removing unused local variables
[org.ibex.core.git] / src / org / ibex / Ibex.java
index 5110127..0e04205 100644 (file)
@@ -213,7 +213,6 @@ public final class Ibex extends JS.Cloneable {
     public static void sleep(final int i) throws JSExn {
         try {
             final JS.UnpauseCallback callback = JS.pause();
-            final long currentTime = System.currentTimeMillis();
             // FEATURE use a single sleeper thread
             new Thread() { public void run() {
                 try { Thread.sleep(i); } catch (InterruptedException e) { }
@@ -301,7 +300,7 @@ public final class Ibex extends JS.Cloneable {
         }
     }
 
-    // FEATURE: move this into builtin.ibex
+    // FEATURE: move this into builtin.xwar
     public Blessing bless(JS b) { return new Ibex.Blessing((JS.Cloneable)b, this, null, null); }
     public static class Blessing extends JS.Clone {
         private Ibex ibex;