summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/db
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-15 14:24:30 +0200
committerNoel Grandin <noel@peralex.com>2014-10-16 08:15:46 +0200
commit48633151ff104e867bae6fcd403a2c8d4a87b509 (patch)
tree8c53c832406734f6772600d8f5cc893eb17f7331 /wizards/com/sun/star/wizards/db
parent4b5cb7ef35648eb33d14f40a7f4cc1b47aea53a4 (diff)
java: methods in interfaces are implicitly public
Change-Id: I543fe5b8890668f60d6528a2a7ae6d099d5b4945
Diffstat (limited to 'wizards/com/sun/star/wizards/db')
-rw-r--r--wizards/com/sun/star/wizards/db/QueryMetaData.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/wizards/com/sun/star/wizards/db/QueryMetaData.java b/wizards/com/sun/star/wizards/db/QueryMetaData.java
index a098eea1484b..c3befda70a70 100644
--- a/wizards/com/sun/star/wizards/db/QueryMetaData.java
+++ b/wizards/com/sun/star/wizards/db/QueryMetaData.java
@@ -41,11 +41,10 @@ public class QueryMetaData extends CommandMetaData
};
public int Type = QueryType.SODETAILQUERY;
- public static interface QueryType
+ public interface QueryType
{
-
- final static int SOSUMMARYQUERY = 0;
- final static int SODETAILQUERY = 1;
+ int SOSUMMARYQUERY = 0;
+ int SODETAILQUERY = 1;
}
public QueryMetaData(XMultiServiceFactory xMSF, Locale CharLocale, NumberFormatter oNumberFormatter)