diff --git a/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java b/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java index 5c2442b9b..a475ce7c9 100644 --- a/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java +++ b/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java @@ -116,12 +116,10 @@ public class FamilyOfGeneratedGenerics { for(String s: posOfTphs.keySet()) { if(posOfTphs.get(s).snd == currentMethod && posOfTphs.get(s).snd != null) { posOfTPHsForThisMethod.put(s,posOfTphs.get(s)); - System.out.println(posOfTPHsForThisMethod); } } listOfThisMethod = getMethodConstraints(cs,cs_cl,posOfTPHsForThisMethod,listOfMethodsAndTph); tempMethodConstraintsWithPosition.put(currentMethod, listOfThisMethod); - System.out.println(tempMethodConstraintsWithPosition); } } @@ -285,7 +283,6 @@ public class FamilyOfGeneratedGenerics { MethodConstraint consToAdd = new MethodConstraint(tphC.getLeft(), tphC.getRight(), tphC.getRel()); if (!checkForDuplicates(consToAdd, tempMC)) { tempMC.add(consToAdd); - System.out.println(consToAdd); } } @@ -309,7 +306,6 @@ public class FamilyOfGeneratedGenerics { MethodConstraint consToAdd = new MethodConstraint(tph, "Object", Relation.EXTENDS); if (!checkForDuplicates(consToAdd, tempMC)) { tempMC.add(consToAdd); - System.out.println(consToAdd); } } } @@ -324,7 +320,6 @@ public class FamilyOfGeneratedGenerics { MethodConstraint consToAdd = new MethodConstraint(tph, "Object", Relation.EXTENDS); if (!checkForDuplicates(consToAdd, tempMC)) { tempMC.add(consToAdd); - System.out.println(consToAdd); } } }