diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-15 08:54:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-15 09:23:16 +0200 |
commit | a1624a8ecd933f9efde940eea8ac0cc1db63cd5d (patch) | |
tree | d8f3c92bd28551f09ea4713f312515afeb2a48bd /wizards | |
parent | 301764855ed9f4a4c28b98013361f7174e0f7c7b (diff) |
cid#1327023 to cid#1327077 SIC: Inner class could be made static
Change-Id: I41f89c4feefe4e012d72c663ebb9bbcb4aa7f163
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/db/TableDescriptor.java | 3 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/db/TypeInspector.java | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/db/TableDescriptor.java b/wizards/com/sun/star/wizards/db/TableDescriptor.java index f844d59bc3a6..ee9c427ba6f2 100644 --- a/wizards/com/sun/star/wizards/db/TableDescriptor.java +++ b/wizards/com/sun/star/wizards/db/TableDescriptor.java @@ -83,9 +83,8 @@ public class TableDescriptor extends CommandMetaData implements XContainerListen xWindow = _xWindow; } - private class ColumnDescriptor + private static class ColumnDescriptor { - String Name; XPropertySet xColPropertySet; diff --git a/wizards/com/sun/star/wizards/db/TypeInspector.java b/wizards/com/sun/star/wizards/db/TypeInspector.java index a555078a0385..0067b5906fed 100644 --- a/wizards/com/sun/star/wizards/db/TypeInspector.java +++ b/wizards/com/sun/star/wizards/db/TypeInspector.java @@ -46,7 +46,7 @@ public class TypeInspector }; static final int INVALID = 999999; - public class TypeInfo + public static class TypeInfo { public boolean bisAutoIncrementable; |