Skip to content

Commit

Permalink
add type name on toString
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Feb 14, 2023
1 parent c96e132 commit 37df67c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/java/com/reandroid/arsc/chunk/TypeBlock.java
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,10 @@ public void onBlockLoaded(BlockReader reader, Block sender) throws IOException {
@Override
public String toString(){
StringBuilder builder=new StringBuilder();
builder.append(getResConfig().toString());
builder.append(" ");
builder.append(super.toString());
builder.append(getTypeName());
builder.append('{');
builder.append(getHeaderBlock());
builder.append('}');
return builder.toString();
}

Expand Down

0 comments on commit 37df67c

Please sign in to comment.