mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-04-29 22:04:25 +02:00
limit attribute indent
This commit is contained in:
parent
480e66e598
commit
9bb47b6f28
@ -402,7 +402,11 @@ public class KXmlSerializer implements XmlSerializer {
|
||||
indentAttributeReference += prefix.length() + 1;
|
||||
}
|
||||
append(name);
|
||||
indentAttributeReference += name.length();
|
||||
int len = name.length();
|
||||
if(len > 20){
|
||||
len = 20;
|
||||
}
|
||||
indentAttributeReference += len;
|
||||
pending = true;
|
||||
return this;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user