JAL-3449 correctly catch absence of install4j in getdown - probably for developers...
[jalview.git] / getdown / src / getdown / launcher / src / main / java / com / threerings / getdown / launcher / StatusPanel.java
index 4b5e05f..a144c83 100644 (file)
@@ -27,6 +27,7 @@ import com.samskivert.swing.LabelStyleConstants;
 import com.samskivert.swing.util.SwingUtil;
 import com.samskivert.util.Throttle;
 
+import com.threerings.getdown.data.Application;
 import com.threerings.getdown.data.Application.UpdateInterface;
 import com.threerings.getdown.data.Build;
 import com.threerings.getdown.util.MessageUtil;
@@ -279,7 +280,7 @@ public final class StatusPanel extends JComponent
        if (_ifc.displayVersion) {
                labelText.append("launcher version: " + Build.version());
                labelText.append("\n");
-               labelText.append("install4j version: " + i4jVersion);
+               labelText.append("install4j version: " + Application.i4jVersion);
                labelText.append("\n");
                labelText.append("installer version: " + System.getProperty("installer_template_version"));
                labelText.append("\n");
@@ -418,6 +419,4 @@ public final class StatusPanel extends JComponent
     protected static final Font FONT = new Font("SansSerif", Font.BOLD, 12);
     
     public String _appbase;
-    
-    public static String i4jVersion = null;
 }