Print Class

This commit is contained in:
Daniel Holle 2023-04-28 16:03:11 +02:00
parent 60a42f1be1
commit 8fb4f062ec

View File

@ -492,7 +492,7 @@ public class ASTToTargetAST {
eliminateInnerTypeVariables(referenced, result);
addMissingObjectBounds(result, classGenerics);
System.out.println(method.name + ": " + result);
System.out.println(this.getClass().getSimpleName() + " " + method.name + ": " + result);
return result;
}
@ -566,7 +566,7 @@ public class ASTToTargetAST {
generics(classOrInterface, javaResult);
addMissingObjectBounds(javaResult, null);
System.out.println("Class " + classOrInterface.getClassName().getClassName() + ": " + javaResult);
System.out.println(this.getClass().getSimpleName() + " Class " + classOrInterface.getClassName().getClassName() + ": " + javaResult);
return javaResult;
}