diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-10-20 14:45:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-10-20 21:18:32 +0100 |
commit | 03828157f4bf252a37dc8f745f163fc70f4c166c (patch) | |
tree | 53aa49062d892c993c428274a0bd88684eee0225 /wizards | |
parent | b6b8ef2508335604f56325f696f1c1791d892305 (diff) |
coverity#1327466 UrF: Unread field
this class is unused since
commit 8f60da0a29744d456cb074af05aeb4b40d1774fa
Author: Noel Grandin <noel@peralex.com>
Date: Wed Oct 14 11:49:19 2015 +0200
cid#1326681 DLS: Dead local store
and clean up the return value, no need to return a TypeInfo when all we
need is a boolean
Change-Id: I8da388b861612acd925ef502904181d140e3abb5
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/db/TypeInspector.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/wizards/com/sun/star/wizards/db/TypeInspector.java b/wizards/com/sun/star/wizards/db/TypeInspector.java index 0067b5906fed..bc9f696a4e86 100644 --- a/wizards/com/sun/star/wizards/db/TypeInspector.java +++ b/wizards/com/sun/star/wizards/db/TypeInspector.java @@ -46,16 +46,6 @@ public class TypeInspector }; static final int INVALID = 999999; - public static class TypeInfo - { - public boolean bisAutoIncrementable; - - public TypeInfo(boolean _bisAutoIncrementable) - { - bisAutoIncrementable = _bisAutoIncrementable; - } - } - public TypeInspector(XResultSet _xResultSet) { try |