JAL-3371 lastVal now String not Object
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 19 Jul 2019 12:48:02 +0000 (13:48 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 19 Jul 2019 12:48:02 +0000 (13:48 +0100)
src/jalview/gui/OptsAndParamsPage.java

index 940ad14..0f4d0e7 100644 (file)
@@ -288,7 +288,7 @@ public class OptsAndParamsPage
 
     boolean integ = false;
 
-    Object lastVal;
+    String lastVal;
 
     ParameterI parameter;
 
@@ -479,9 +479,10 @@ public class OptsAndParamsPage
      * 
      * @return
      */
-    private Object getCurrentValue()
+    private String getCurrentValue()
     {
-      return choice ? choicebox.getSelectedItem() : valueField.getText();
+      return choice ? (String) choicebox.getSelectedItem()
+              : valueField.getText();
     }
 
     @Override