1st fix of embedded applet null pointer "issue"... ^^
[jalview.git] / forester / java / src / org / forester / archaeopteryx / tools / ImageLoader.java
index f3e9aa9..b81cc25 100644 (file)
@@ -34,9 +34,9 @@ import java.util.List;
 
 import javax.imageio.ImageIO;
 
+import org.forester.archaeopteryx.AptxUtil;
 import org.forester.archaeopteryx.Constants;
 import org.forester.archaeopteryx.TreePanel;
-import org.forester.archaeopteryx.Util;
 import org.forester.phylogeny.PhylogenyNode;
 import org.forester.phylogeny.data.Taxonomy;
 import org.forester.phylogeny.data.Uri;
@@ -46,6 +46,7 @@ public class ImageLoader implements Runnable {
 
     private final TreePanel            _tp;
     private static final BufferedImage PLACEHOLDER = new BufferedImage( 1, 1, BufferedImage.TYPE_INT_RGB );
+    private final static boolean       DEBUG       = false;
 
     public ImageLoader( final TreePanel tp ) {
         _tp = tp;
@@ -82,18 +83,18 @@ public class ImageLoader implements Runnable {
                                         || uri_str.endsWith( ".gif" ) || uri_str.endsWith( ".bmp" ) ) ) {
                             image_map.put( uri_str, PLACEHOLDER );
                             BufferedImage bi = null;
-                            if ( !Constants.__RELEASE && !Constants.__SNAPSHOT_RELEASE ) {
-                                System.out.println( "accessing:" + uri );
+                            if ( DEBUG ) {
+                                System.out.println( "accessing: " + uri );
                             }
                             try {
                                 bi = ImageIO.read( uri.getValue().toURL() );
                             }
                             catch ( final MalformedURLException e ) {
-                                Util.printWarningMessage( Constants.PRG_NAME, "\"" + uri.getValue()
+                                AptxUtil.printWarningMessage( Constants.PRG_NAME, "\"" + uri.getValue()
                                         + "\": Malformed URL Exception: " + e.getLocalizedMessage() );
                             }
                             catch ( final IOException e ) {
-                                Util.printWarningMessage( Constants.PRG_NAME, "\"" + uri.getValue()
+                                AptxUtil.printWarningMessage( Constants.PRG_NAME, "\"" + uri.getValue()
                                         + "\": IO Exception: " + e.getLocalizedMessage() );
                             }
                             if ( bi != null ) {