summaryrefslogtreecommitdiff
path: root/scripting/workben/installer/IdeUpdater.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/workben/installer/IdeUpdater.java')
-rw-r--r--scripting/workben/installer/IdeUpdater.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/scripting/workben/installer/IdeUpdater.java b/scripting/workben/installer/IdeUpdater.java
index 3efe04e1f282..fe7b700d237d 100644
--- a/scripting/workben/installer/IdeUpdater.java
+++ b/scripting/workben/installer/IdeUpdater.java
@@ -64,52 +64,6 @@ public class IdeUpdater 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()
- {
- threadSuspended = false;
- notify();
- }// setResume
-
-
- public void setStop()
- {
- internalThread = null;
- }// setStop
-
-
@Override
public void run() {