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 --- toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toolkit/qa') diff --git a/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java b/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java index 822e0945c1f3..a2af0bac4bcd 100644 --- a/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java +++ b/toolkit/qa/complex/toolkit/awtgrid/TMutableGridDataModel.java @@ -435,7 +435,7 @@ public class TMutableGridDataModel private final XMutableGridDataModel m_dataModel; private final GridDataListener m_listener; - private final static Object[][] m_rowValues = new Object[][] { + private static final Object[][] m_rowValues = new Object[][] { new Object[] { 1, 2, "3", 4, 5 }, new Object[] { 2, 3, 4, "5", 6 }, new Object[] { "3", 4, 5, 6, 7 }, @@ -443,7 +443,7 @@ public class TMutableGridDataModel new Object[] { 5, "6", 7, 8, 9 }, }; - private final static Object[] m_rowHeadings = new Object[] { + private static final Object[] m_rowHeadings = new Object[] { "1", 2, 3.0, "4", (float)5.0 }; } -- cgit