From 0c18bedb7328493040c1a20822b345e624d6041f Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 12 Jun 2015 09:30:14 +0200 Subject: java: 'final static' to 'static final' this is the canonical order, and it makes the code easier to read Change-Id: I272e7f1e140296e582702b6dbf77a03eefb65470 Reviewed-on: https://gerrit.libreoffice.org/16242 Tested-by: Jenkins Reviewed-by: David Ostrovsky --- dbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbaccess/qa') diff --git a/dbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java b/dbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java index 581677c91c57..2d05030b7e83 100644 --- a/dbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java +++ b/dbaccess/qa/complex/dbaccess/SingleSelectQueryComposer.java @@ -49,13 +49,13 @@ public class SingleSelectQueryComposer extends CRMBasedTestCase { private XSingleSelectQueryComposer m_composer = null; - private final static String COMPLEXFILTER = "( \"ID\" = 1 AND \"Postal\" = '4' )" + private static final String COMPLEXFILTER = "( \"ID\" = 1 AND \"Postal\" = '4' )" + " OR ( \"ID\" = 2 AND \"Postal\" = '5' )" + " OR ( \"ID\" = 3 AND \"Postal\" = '6' AND \"Address\" = '7' )" + " OR ( \"Address\" = '8' )" + " OR ( \"Postal\" = '9' )" + " OR ( NOW( ) = {d '2010-01-01' } )"; - private final static String INNERPRODUCTSQUERY = "products (inner)"; + private static final String INNERPRODUCTSQUERY = "products (inner)"; private void createQueries() throws Exception -- cgit