Skip to content

Commit

Permalink
update ARSCLib 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
REAndroid committed Jul 15, 2023
1 parent d6fa58b commit 8bb3915
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified libs/ARSCLib.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private void logFinished(){
XMLElement element=refactoredTypeMap.toXMLDocument().getDocumentElement();
element.setName("renamed");
element.setAttribute("count", String.valueOf(refactoredTypeMap.count()));
log.append(element.toText(2, false));
log.append(element.toText());
}
TypeNameMap remain=new TypeNameMap();
for(Map.Entry<Integer, TypeString> entry:mTypeStrings.entrySet()){
Expand All @@ -82,7 +82,7 @@ private void logFinished(){
XMLDocument xmlDocument=remain.toXMLDocument();
XMLElement element=xmlDocument.getDocumentElement();
element.setName("remain");
log.append(xmlDocument.toText(2, false));
log.append(xmlDocument.toText());
}
logMessage(log.toString());
}
Expand Down

1 comment on commit 8bb3915

@REAndroid
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes
#45
#49
#50

Please sign in to comment.