mirror of
https://github.com/revanced/Apktool.git
synced 2025-02-01 06:37:34 +01:00
ExtMXSerializer.setProperty(): fixed a bug, which makes impossible to set PROPERTY_DEFAULT_ENCODING.
This commit is contained in:
parent
35efa39be3
commit
96e62f955b
@ -51,8 +51,9 @@ public class ExtMXSerializer extends MXSerializer {
|
|||||||
throws IllegalArgumentException, IllegalStateException {
|
throws IllegalArgumentException, IllegalStateException {
|
||||||
if (PROPERTY_DEFAULT_ENCODING.equals(name)) {
|
if (PROPERTY_DEFAULT_ENCODING.equals(name)) {
|
||||||
mDefaultEncoding = (String) value;
|
mDefaultEncoding = (String) value;
|
||||||
|
} else {
|
||||||
|
super.setProperty(name, value);
|
||||||
}
|
}
|
||||||
super.setProperty(name, value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public final static String PROPERTY_DEFAULT_ENCODING = "DEFAULT_ENCODING";
|
public final static String PROPERTY_DEFAULT_ENCODING = "DEFAULT_ENCODING";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user