summaryrefslogtreecommitdiff
path: root/smoketest
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-06-09 13:30:49 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-06-11 09:34:00 +0000
commitefd4bfa818e262d7dc219ac3ceb85526fedc732c (patch)
tree932b54f6c3689d3c087f4f3911f66695c8817229 /smoketest
parenta6f4fde8baf3eeb36820d18ffad84192e995145f (diff)
java:regulatize the order of 'final' and public/private
Make the order be 'public static' or 'private static' Just makes the code nicer to read. Change-Id: I182424bda45a2d68642e5d04c6091d268ace1fe2 Reviewed-on: https://gerrit.libreoffice.org/16202 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'smoketest')
-rw-r--r--smoketest/com/sun/star/comp/smoketest/TestExtension.java2
-rw-r--r--smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/com/sun/star/comp/smoketest/TestExtension.java b/smoketest/com/sun/star/comp/smoketest/TestExtension.java
index 5e4d797fa602..65fdfff75dff 100644
--- a/smoketest/com/sun/star/comp/smoketest/TestExtension.java
+++ b/smoketest/com/sun/star/comp/smoketest/TestExtension.java
@@ -37,7 +37,7 @@ public class TestExtension {
implements XServiceInfo {
/** The service name, that must be used to get an instance of this service.
*/
- static private final String __serviceName =
+ private static final String __serviceName =
"com.sun.star.comp.smoketest.TestExtension";
/** This method returns an array of all supported service names.
diff --git a/smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment.java b/smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment.java
index 7cdd64732d19..66444c2d0372 100644
--- a/smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment.java
+++ b/smoketest/org/libreoffice/smoketest/SmoketestCommandEnvironment.java
@@ -30,7 +30,7 @@ import com.sun.star.ucb.XCommandEnvironment;
public class SmoketestCommandEnvironment extends WeakBase
implements XServiceInfo, XCommandEnvironment {
- static private final String __serviceName =
+ private static final String __serviceName =
"com.sun.star.deployment.test.SmoketestCommandEnvironment";
public static String[] getServiceNames() {