From 1348a7a4b61ea97a24f0a40f185050652991a730 Mon Sep 17 00:00:00 2001 From: AluAli Date: Sat, 23 Jan 2021 00:07:05 +0100 Subject: [PATCH] modified: src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java --- .../bytecode/insertGenerics/FamilyOfGeneratedGenerics.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java b/src/main/java/de/dhbwstuttgart/bytecode/insertGenerics/FamilyOfGeneratedGenerics.java index 5c2442b9..a475ce7c 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); } } }