Handling empty (null) values again

This commit is contained in:
Connor Tumbleson 2015-12-14 11:35:15 -06:00
parent b2d50bec5f
commit 831765665f

View File

@ -72,7 +72,7 @@ public final class ResXmlEncoders {
}
public static String encodeAsXmlValue(String str) {
if (str.isEmpty()) {
if (str == null || str.isEmpty()) {
return str;
}