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 --- bean/qa/complex/bean/WriterFrame.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bean') diff --git a/bean/qa/complex/bean/WriterFrame.java b/bean/qa/complex/bean/WriterFrame.java index 77f1959c98f0..eb7e477c7f70 100644 --- a/bean/qa/complex/bean/WriterFrame.java +++ b/bean/qa/complex/bean/WriterFrame.java @@ -30,7 +30,7 @@ import com.sun.star.uno.UnoRuntime; class WriterFrame extends java.awt.Frame { private com.sun.star.comp.beans.OOoBean m_bean; - private final static String m_sDocURL = "private:factory/swriter"; + private static final String m_sDocURL = "private:factory/swriter"; /** @param loadBeforeVisible -- cgit