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 --- jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jurt/com/sun/star/comp') diff --git a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java index 50c82c91bb37..a43cb094cf0d 100644 --- a/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java +++ b/jurt/com/sun/star/comp/bridgefactory/BridgeFactory.java @@ -52,7 +52,7 @@ public class BridgeFactory implements XBridgeFactory/*, XEventListener*/ { * The name of the service, the JavaLoader accesses this through * reflection. */ - public final static String __serviceName = "com.sun.star.bridge.BridgeFactory"; + public static final String __serviceName = "com.sun.star.bridge.BridgeFactory"; /** * Gives a factory for creating the service. -- cgit