1
0

[HUDI-143] Excluding javax.* from utilities and spark bundles

- Plus minor code review comments
This commit is contained in:
Vinoth Chandar
2019-09-02 19:46:10 -07:00
committed by Balaji Varadarajan
parent 7a973a6944
commit d0b9b56b7d
7 changed files with 7 additions and 9 deletions

View File

@@ -62,7 +62,7 @@ public class StringUtils {
return sb.toString();
}
public static boolean isEmpty(String str) {
public static boolean isNullOrEmpty(String str) {
return str == null || str.length() == 0;
}
}