JAL-3210 Improvements to eclipse detection. New src tree and SwingJS updated from...
[jalview.git] / src / jalview / datamodel / BinarySequence.java
index cea9de7..c33abb3 100755 (executable)
@@ -169,7 +169,7 @@ public class BinarySequence extends Sequence
 
     for (int i = 0; i < binary.length; i++)
     {
-      out += (Integer.valueOf(binary[i])).toString();
+      out += (new Integer(binary[i])).toString();
 
       if (i < (binary.length - 1))
       {