diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 402acc9..d5df3f1 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -2491,12 +2491,11 @@ public class TestingList extends Panel { return testParams; } Iterator itD = deviceParams.entrySet().iterator(); - Iterator itT = testParams.entrySet().iterator(); System.out.println("deviceParams: " + deviceParams.size()); while (itD.hasNext()) { Map.Entry pairD = (Map.Entry)itD.next(); System.out.println(pairD.getKey() + " = " + pairD.getValue()); - itT = testParams.entrySet().iterator(); + Iterator itT = testParams.entrySet().iterator(); while (itT.hasNext()) { Map.Entry pairT = (Map.Entry)itT.next(); if(pairT.getKey() == pairD.getKey()){