JAL-3038 unit test updates for JalviewJS workaround hack
[jalview.git] / src / jalview / io / cache / JvCacheableInputBox.java
index 5e79393..d2ad8de 100644 (file)
@@ -379,4 +379,12 @@ public class JvCacheableInputBox<E>
     }
   }
 
+  public void addItem(String item)
+  {
+    if (!Jalview.isJS())
+    {
+      comboBox.addItem(item);
+    }
+  }
+
 }