Use isNotEmpty instead of isNoneEmpty

Caused NoSuchMethodError on at least one device
This commit is contained in:
daniel oeh 2014-08-12 16:29:02 +02:00
parent 1f685b0295
commit b0500e7048
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public class FlattrUtils {
*/
public static boolean hasAPICredentials() {
return StringUtils.isNotEmpty(BuildConfig.FLATTR_APP_KEY)
&& StringUtils.isNoneEmpty(BuildConfig.FLATTR_APP_SECRET);
&& StringUtils.isNotEmpty(BuildConfig.FLATTR_APP_SECRET);
}
public static boolean hasToken() {