summaryrefslogtreecommitdiff
path: root/svl/qa
diff options
context:
space:
mode:
Diffstat (limited to 'svl/qa')
-rw-r--r--svl/qa/complex/passwordcontainer/Test01.java4
-rw-r--r--svl/qa/complex/passwordcontainer/Test02.java4
-rw-r--r--svl/qa/complex/passwordcontainer/Test03.java4
-rw-r--r--svl/qa/complex/passwordcontainer/TestHelper.java4
4 files changed, 8 insertions, 8 deletions
diff --git a/svl/qa/complex/passwordcontainer/Test01.java b/svl/qa/complex/passwordcontainer/Test01.java
index fb6b8537b020..d0e9dcc09e9e 100644
--- a/svl/qa/complex/passwordcontainer/Test01.java
+++ b/svl/qa/complex/passwordcontainer/Test01.java
@@ -27,9 +27,9 @@ import com.sun.star.uno.UnoRuntime;
public class Test01 implements PasswordContainerTest {
- XMultiServiceFactory m_xMSF = null;
+ private XMultiServiceFactory m_xMSF = null;
XPasswordContainer m_xPasswordContainer = null;
- TestHelper m_aTestHelper = null;
+ private TestHelper m_aTestHelper = null;
public Test01 ( XMultiServiceFactory xMSF )
{
diff --git a/svl/qa/complex/passwordcontainer/Test02.java b/svl/qa/complex/passwordcontainer/Test02.java
index aca3183b2569..1296d77af678 100644
--- a/svl/qa/complex/passwordcontainer/Test02.java
+++ b/svl/qa/complex/passwordcontainer/Test02.java
@@ -29,9 +29,9 @@ import com.sun.star.uno.UnoRuntime;
public class Test02 implements PasswordContainerTest {
- XMultiServiceFactory m_xMSF = null;
+ private XMultiServiceFactory m_xMSF = null;
XPasswordContainer m_xPasswordContainer = null;
- TestHelper m_aTestHelper = null;
+ private TestHelper m_aTestHelper = null;
public Test02 ( XMultiServiceFactory xMSF )
{
diff --git a/svl/qa/complex/passwordcontainer/Test03.java b/svl/qa/complex/passwordcontainer/Test03.java
index 93df47ad62c1..d9b3e3588b3e 100644
--- a/svl/qa/complex/passwordcontainer/Test03.java
+++ b/svl/qa/complex/passwordcontainer/Test03.java
@@ -30,9 +30,9 @@ import com.sun.star.uno.UnoRuntime;
public class Test03 implements PasswordContainerTest {
- XMultiServiceFactory m_xMSF = null;
+ private XMultiServiceFactory m_xMSF = null;
XPasswordContainer m_xPasswordContainer = null;
- TestHelper m_aTestHelper = null;
+ private TestHelper m_aTestHelper = null;
public Test03 ( XMultiServiceFactory xMSF )
{
diff --git a/svl/qa/complex/passwordcontainer/TestHelper.java b/svl/qa/complex/passwordcontainer/TestHelper.java
index 10574019ebcc..b6f1f08425e6 100644
--- a/svl/qa/complex/passwordcontainer/TestHelper.java
+++ b/svl/qa/complex/passwordcontainer/TestHelper.java
@@ -22,7 +22,7 @@ import com.sun.star.task.UserRecord;
public class TestHelper {
- String m_sTestPrefix;
+ private String m_sTestPrefix;
public TestHelper( String sTestPrefix ) {
m_sTestPrefix = sTestPrefix;
@@ -32,7 +32,7 @@ public class TestHelper {
System.out.println( m_sTestPrefix + "Error: " + sError );
}
- public void Message( String sMessage ) {
+ private void Message( String sMessage ) {
System.out.println( m_sTestPrefix + sMessage );
}