bugfixes mainly...
[mir.git] / source / mircoders / storage / DatabaseImageFormat.java
index 606d1c7..346ecb5 100755 (executable)
@@ -22,7 +22,11 @@ public class DatabaseImageFormat extends Database implements StorageObject{
        private static DatabaseImageFormat instance;
        private static SimpleList publisherPopupData;
 
-       public static DatabaseImageFormat getInstance() throws StorageObjectException
+       // the following *has* to be sychronized cause this static method
+       // could get preemted and we could end up with 2 instances of DatabaseFoo..
+       // see the "Singletons with needles and thread" article at JavaWorld -mh
+       public synchronized static DatabaseImageFormat getInstance() 
+         throws StorageObjectException
        {
                if (instance == null) {
                        instance = new DatabaseImageFormat();
@@ -38,7 +42,8 @@ public class DatabaseImageFormat extends Database implements StorageObject{
                this.theTable="img_format";
        }
 
-       public SimpleList getPopupData() { return getPopupData("name",true); }
+       public SimpleList getPopupData()
+        throws StorageObjectException { return getPopupData("name",true); }
 
 
 }