Änderung von toSting(): gibt nun getSignature() statt getFullyQualifiedName() zurück.

This commit is contained in:
Etienne Zink 2022-03-19 18:12:46 +01:00
parent 2706c31beb
commit 36ef1e124a

View File

@ -26,7 +26,7 @@ public abstract class IntermediateType {
public abstract String getDescriptor(); public abstract String getDescriptor();
@Override @Override
public String toString() { return getFullyQualifiedName(); } public String toString() { return getSignature(); }
protected String getClassName() { protected String getClassName() {
return className.getClassName(); return className.getClassName();