toString impls for debug

This commit is contained in:
Egor.Ushakov
2016-05-26 13:53:27 +03:00
parent 7067504c27
commit 7628ddfd2c
3 changed files with 15 additions and 0 deletions

View File

@@ -55,4 +55,9 @@ public class StructField extends StructMember {
public String getDescriptor() {
return descriptor;
}
@Override
public String toString() {
return name;
}
}