k-9/src/com/fsck/k9/helper/StringUtils.java

8 lines
173 B
Java
Raw Normal View History

2011-10-27 14:50:23 -04:00
package com.fsck.k9.helper;
public final class StringUtils {
public static boolean isNullOrEmpty(String string){
return string == null || string.length() == 0;
}
}