summaryrefslogtreecommitdiffstats
path: root/scripting/workben/installer/XmlUpdater.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/workben/installer/XmlUpdater.java')
-rw-r--r--scripting/workben/installer/XmlUpdater.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/scripting/workben/installer/XmlUpdater.java b/scripting/workben/installer/XmlUpdater.java
index 8c5763a3b05f..3424cd57d110 100644
--- a/scripting/workben/installer/XmlUpdater.java
+++ b/scripting/workben/installer/XmlUpdater.java
@@ -106,35 +106,8 @@ public class XmlUpdater extends Thread {
}// XmlUpdater
- public boolean checkStop()
- {
- if (internalThread == Thread.currentThread())
- return false;
- return true;
- }// checkStop
-
-
- public void checkSuspend()
- {
- if (threadSuspended) {
- synchronized(this) {
- while (threadSuspended) {
- try {
- wait();
- } catch (InterruptedException eInt) {
-
- }
- }
- }
- }
- }// checkSuspend
- public void setSuspend()
- {
- threadSuspended = true;
- }// setSuspend
-
public void setResume()
{
@@ -143,12 +116,6 @@ public class XmlUpdater extends Thread {
}// setResume
- public void setStop()
- {
- internalThread = null;
- }// setStop
-
-
@Override
public void run() {