JAL-3032 comments only - starting work on dialogs
authorhansonr <hansonr@stolaf.edu>
Wed, 27 Jun 2018 10:23:42 +0000 (11:23 +0100)
committerhansonr <hansonr@stolaf.edu>
Wed, 27 Jun 2018 10:23:42 +0000 (11:23 +0100)
src/jalview/gui/JvOptionPane.java

index 7b2e430..d0ed5f6 100644 (file)
@@ -29,9 +29,8 @@ import javax.swing.JOptionPane;
 
 public class JvOptionPane extends JOptionPane
 {
-  /**
-   * 
-   */
+  // BH 2018 no changes needed here.
+
   private static final long serialVersionUID = -3019167117756785229L;
 
   private static Object mockResponse = JvOptionPane.CANCEL_OPTION;
@@ -41,6 +40,7 @@ public class JvOptionPane extends JOptionPane
   public static int showConfirmDialog(Component parentComponent,
           Object message) throws HeadlessException
   {
+    // only called by test
     return isInteractiveMode()
             ? JOptionPane.showConfirmDialog(parentComponent, message)
             : (int) getMockResponse();