removing unused local variables
[org.ibex.core.git] / src / org / ibex / js / JSFunction.java
index 6c0e89a..4e6a48d 100644 (file)
@@ -28,7 +28,6 @@ class JSFunction extends JS implements ByteCodes, Tokens, org.ibex.Scheduler.Tas
     /** if you enqueue a function, it gets invoked in its own pauseable context */
     public void perform() throws JSExn {
         Interpreter i = new Interpreter(this, true, new JSArray());
-        int oldpausecount = i.pausecount;
         i.resume();
     }