diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-12 09:30:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-15 08:45:19 +0000 |
commit | 0c18bedb7328493040c1a20822b345e624d6041f (patch) | |
tree | 2f7fb01b21a63ceef52f05035bc047173ea46785 /reportbuilder/java | |
parent | 8b85838611ed448ef18a9e4982849bbd702981aa (diff) |
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 <ci@libreoffice.org>
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'reportbuilder/java')
-rwxr-xr-x[-rw-r--r--] | reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter.java | 0 | ||||
-rw-r--r-- | reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler.java | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter.java index 4797d2ad4f65..4797d2ad4f65 100644..100755 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/StylesWriter.java diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler.java index d4d49fe00c30..1b7e8cb73283 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/draw/ObjectOleReadHandler.java @@ -32,8 +32,8 @@ import org.xml.sax.SAXException; public class ObjectOleReadHandler extends ElementReadHandler { - private final static String RPT_CHART_CLASS_ID = "80243D39-6741-46C5-926E-069164FF87BB"; - private final static String OOO_CHART_CLASS_ID = "12DCAE26-281F-416F-A234-C3086127382E"; + private static final String RPT_CHART_CLASS_ID = "80243D39-6741-46C5-926E-069164FF87BB"; + private static final String OOO_CHART_CLASS_ID = "12DCAE26-281F-416F-A234-C3086127382E"; private final ObjectOleElement element; public ObjectOleReadHandler(final ObjectOleElement element) |