diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 1feb3ba..966975b 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -2498,10 +2498,10 @@ public class TestingList extends Panel { Iterator itT = testParams.entrySet().iterator(); while (itT.hasNext()) { Map.Entry pairT = (Map.Entry)itT.next(); - if(pairT.getKey().toString() == pairD.getKey().toString()){ + //if(pairT.getKey() == pairD.getKey()){ System.out.println("test: " + pairT.getKey() + " = " + pairT.getValue()); System.out.println("device: " + pairD.getKey() + " = " + pairD.getValue()); - } + //} } //it.remove(); // avoids a ConcurrentModificationException }