implement/stub some stuff to make SmashHit launch

This commit is contained in:
Mis012
2022-11-24 16:05:38 +01:00
parent b0d6045254
commit 75187b01d5
8 changed files with 64 additions and 1 deletions

View File

@@ -61,4 +61,8 @@ public class TextUtils {
final CharSequence delimiter = ","; // ????
return join(delimiter, list);
}
public static boolean isEmpty(CharSequence str) {
return str.equals(""); // presumably?
}
}