2003/12/16 20:55:24
[org.ibex.core.git] / src / org / xwt / translators / GIF.java
index 53dca2b..d2cfed8 100644 (file)
@@ -60,7 +60,7 @@ public class GIF {
     private static Queue instances = new Queue(10);
 
     public static void load(InputStream is, Picture p) {
-        GIF g = (GIF)instances.remove();
+        GIF g = (GIF)instances.remove(false);
         if (g == null) g = new GIF();
         try {
             g._load(is, p);