JAL-2089 patch broken merge to master for Release 2.10.0b1
[jalview.git] / src / jalview / gui / OOMWarning.java
index 2a94235..eb4425e 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -77,12 +77,11 @@ public class OOMWarning implements Runnable
 
   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);
+    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);
     // hope that there's enough memory left that no more appear.
     oomInprogress = false;
   }