JAL-2326 updated references of JOptionPane to JvOptionPane
[jalview.git] / src / jalview / gui / OOMWarning.java
index 319c283..f519b85 100644 (file)
@@ -75,14 +75,15 @@ public class OOMWarning implements Runnable
     this(string, oomerror, Desktop.desktop);
   }
 
+  @Override
   public void run()
   {
-    javax.swing.JOptionPane
-            .showInternalMessageDialog(
-                    desktop,
-                    MessageManager.formatMessage("warn.out_of_memory_when_action", new String[]{action}),
-                    MessageManager.getString("label.out_of_memory"),
-                    javax.swing.JOptionPane.WARNING_MESSAGE);
+    JvOptionPane
+            .showInternalMessageDialog(desktop,
+            MessageManager.formatMessage("warn.out_of_memory_when_action",
+                    new String[] { action }), MessageManager
+                    .getString("label.out_of_memory"),
+                    JvOptionPane.WARNING_MESSAGE);
     // hope that there's enough memory left that no more appear.
     oomInprogress = false;
   }