summaryrefslogtreecommitdiff
path: root/sot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-10 15:36:24 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-12-11 06:09:03 +0000
commit7557f23b31dcfb4d86c122bb34d9675c0db9a694 (patch)
tree5feb7be2b0841d8ee60d935cf2e29e9a01a31a27 /sot
parent808fd5fbd8868dfd95c8a38676815798fa2b79c4 (diff)
java: reduce visibility of fields and methods
found by PMD Change-Id: Id6737916b68ccbdbdeec5d314747a38410923ac6 Reviewed-on: https://gerrit.libreoffice.org/13409 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sot')
-rw-r--r--sot/qa/complex/olesimplestorage/Test01.java8
-rw-r--r--sot/qa/complex/olesimplestorage/TestHelper.java2
2 files changed, 5 insertions, 5 deletions
diff --git a/sot/qa/complex/olesimplestorage/Test01.java b/sot/qa/complex/olesimplestorage/Test01.java
index c07eb2283803..18d220e05488 100644
--- a/sot/qa/complex/olesimplestorage/Test01.java
+++ b/sot/qa/complex/olesimplestorage/Test01.java
@@ -28,10 +28,10 @@ import java.util.Random;
public class Test01 implements OLESimpleStorageTest
{
- XMultiServiceFactory m_xMSF = null;
- TestHelper m_aTestHelper = null;
- static final int pStreamCnt = 5;
- static final int pBytesCnt = 10;
+ private XMultiServiceFactory m_xMSF = null;
+ private TestHelper m_aTestHelper = null;
+ private static final int pStreamCnt = 5;
+ private static final int pBytesCnt = 10;
public Test01 ( XMultiServiceFactory xMSF )
{
diff --git a/sot/qa/complex/olesimplestorage/TestHelper.java b/sot/qa/complex/olesimplestorage/TestHelper.java
index eadef8375eb0..651ee9218363 100644
--- a/sot/qa/complex/olesimplestorage/TestHelper.java
+++ b/sot/qa/complex/olesimplestorage/TestHelper.java
@@ -21,7 +21,7 @@ package complex.olesimplestorage;
public class TestHelper
{
- String m_sTestPrefix;
+ private String m_sTestPrefix;
public TestHelper ( String sTestPrefix )
{