1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

stringutils

This commit is contained in:
Lim Sungguk 2011-10-28 03:50:23 +09:00
parent 0c40736f26
commit 7903797080

View File

@ -0,0 +1,7 @@
package com.fsck.k9.helper;
public final class StringUtils {
public static boolean isNullOrEmpty(String string){
return string == null || string.length() == 0;
}
}