mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 05:47:46 +01:00
Handling empty (null) values again
This commit is contained in:
parent
b2d50bec5f
commit
831765665f
@ -72,7 +72,7 @@ public final class ResXmlEncoders {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static String encodeAsXmlValue(String str) {
|
public static String encodeAsXmlValue(String str) {
|
||||||
if (str.isEmpty()) {
|
if (str == null || str.isEmpty()) {
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user