summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-16 13:02:45 +0200
committerNoel Grandin <noel@peralex.com>2014-10-17 08:26:21 +0200
commit03c7c26cbe7d75f103515e62dc39103f11d4637f (patch)
treed2e3e75fd84ce6fcb58c3ccbb59d5a1a62990c47 /vcl
parent12b01b920f42666db84c8be1c9b6fd89a86eea4e (diff)
java: final fields that can be static
Change-Id: I8c06be7bc0b8a38c662209f0de72a00550e25447
Diffstat (limited to 'vcl')
-rw-r--r--vcl/qa/complex/memCheck/CheckMemoryUsage.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/qa/complex/memCheck/CheckMemoryUsage.java b/vcl/qa/complex/memCheck/CheckMemoryUsage.java
index ad0e249b4cdf..77d4acfdf78b 100644
--- a/vcl/qa/complex/memCheck/CheckMemoryUsage.java
+++ b/vcl/qa/complex/memCheck/CheckMemoryUsage.java
@@ -93,9 +93,9 @@ public class CheckMemoryUsage /* extends ComplexTestCase */
{
- private final String sWriterDoc = "sxw,writer_pdf_Export";
- private final String sCalcDoc = "sxc,calc_pdf_Export";
- private final String sImpressDoc = "sxi,impress_pdf_Export";
+ private static final String sWriterDoc = "sxw,writer_pdf_Export";
+ private static final String sCalcDoc = "sxc,calc_pdf_Export";
+ private static final String sImpressDoc = "sxi,impress_pdf_Export";
TempDir m_aTempDir;
private String[][] sDocTypeExportFilter;
private String[][] sDocuments;