summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/framework/autosave/AutoSave.java2
-rw-r--r--framework/qa/complex/framework/autosave/Protocol.java4
-rw-r--r--framework/qa/complex/framework/recovery/RecoveryTools.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/framework/qa/complex/framework/autosave/AutoSave.java b/framework/qa/complex/framework/autosave/AutoSave.java
index 868dd63a3d45..9f6494394037 100644
--- a/framework/qa/complex/framework/autosave/AutoSave.java
+++ b/framework/qa/complex/framework/autosave/AutoSave.java
@@ -97,7 +97,7 @@ public class AutoSave
m_aLog.log(Protocol.TYPE_SCOPE_CLOSE, "");
}
- public void disableListener()
+ private void disableListener()
{
m_aLog.log(Protocol.TYPE_SCOPE_OPEN, "stop listening for AutoSave notifications ...");
diff --git a/framework/qa/complex/framework/autosave/Protocol.java b/framework/qa/complex/framework/autosave/Protocol.java
index 63f1e79fb755..528a4a2a475d 100644
--- a/framework/qa/complex/framework/autosave/Protocol.java
+++ b/framework/qa/complex/framework/autosave/Protocol.java
@@ -272,7 +272,7 @@ public class Protocol extends JComponent
* format this line as a string for writing log files
* using the html format
*/
- public synchronized String toHTML()
+ private synchronized String toHTML()
{
StringBuffer sLine = new StringBuffer(1000);
sLine.append("<tr>");
@@ -716,7 +716,7 @@ public class Protocol extends JComponent
resetStatistics();
}
- public synchronized void resetStatistics()
+ private synchronized void resetStatistics()
{
m_nTestMarks = 0;
m_nWarnings = 0;
diff --git a/framework/qa/complex/framework/recovery/RecoveryTools.java b/framework/qa/complex/framework/recovery/RecoveryTools.java
index a02b756613c5..feb10f4b255a 100644
--- a/framework/qa/complex/framework/recovery/RecoveryTools.java
+++ b/framework/qa/complex/framework/recovery/RecoveryTools.java
@@ -116,7 +116,7 @@ public class RecoveryTools {
/**
* halt the thread for some time
*/
- public void pause(int sleepTime){
+ private void pause(int sleepTime){
sleep(sleepTime);
}