Merge branch 'ligi-ligi/fix/add_ability_to_compile_with_java8' into development

This commit is contained in:
Dominik Schürmann 2015-01-30 10:10:25 +01:00
commit c2c28fab7b
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ dependencies {
android {
compileSdkVersion 21
buildToolsVersion '21.1.1'
buildToolsVersion '21.1.2'
defaultConfig {
minSdkVersion 15

View file

@ -699,7 +699,7 @@ public class KeychainProvider extends ContentProvider {
)) {
throw new AssertionError("Incorrect type for user packet! This is a bug!");
}
if (values.get(UserPacketsColumns.RANK) == 0 && values.get(UserPacketsColumns.USER_ID) == null) {
if (((Number)values.get(UserPacketsColumns.RANK)).intValue() == 0 && values.get(UserPacketsColumns.USER_ID) == null) {
throw new AssertionError("Rank 0 user packet must be a user id!");
}
db.insertOrThrow(Tables.USER_PACKETS, null, values);