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

Fix tests-on-jvm

This commit is contained in:
cketti 2014-12-16 05:16:09 +01:00
parent 62c5ac8e5f
commit d24998d584

View File

@ -0,0 +1,7 @@
package android.text;
public class TextUtils {
public static boolean isEmpty(CharSequence str) {
return (str == null || str.length() == 0);
}
}