Renamed two Util methods

This commit is contained in:
Karim Abou Zeid 2015-04-22 13:48:55 +02:00
commit 4b2921c6c7
10 changed files with 33 additions and 33 deletions

View file

@ -178,11 +178,11 @@ public class Util {
}
}
public static boolean hasLollipopSDK() {
public static boolean isAtLeastLollipop() {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;
}
public static boolean hasKitKatSDK() {
public static boolean isAtLeastKitKat() {
return Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
}