Closedown

This commit is contained in:
boccioli_m
2017-08-31 16:48:53 +02:00
parent 60e5a8cdd4
commit 3f94b20d4b
2 changed files with 2 additions and 2 deletions

View File

@@ -2498,7 +2498,7 @@ public class TestingList extends Panel {
Iterator itT = testParams.entrySet().iterator();
while (itT.hasNext()) {
Map.Entry pairT = (Map.Entry)itT.next();
if(pairT.getKey() == pairD.getKey()){
if(pairT.getKey().toString() == pairD.getKey().toString()){
System.out.println("test: " + pairT.getKey() + " = " + pairT.getValue());
System.out.println("device: " + pairD.getKey() + " = " + pairD.getValue());
}