fix bug that prevented scar image from loading
[org.ibex.js.git] / src / org / ibex / js / JSU.java
index 805224b..db96ed3 100644 (file)
@@ -10,7 +10,7 @@ public class JSU {
     public static final JS[] emptyArgs = new JS[] { };
 
     public static InputStream getInputStream(JS j) throws IOException {
-        while(j != null && j instanceof JS.Cloneable) j = j.unclone();
+        while(j != null && j instanceof JS.Clone) j = j.unclone();
         if (j != null && j instanceof Fountain) return ((Fountain)j).getInputStream();
         return null;
     }