mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-02 13:32:19 -05:00
Add explicit casting to be able to compile with java8
This commit is contained in:
parent
4aa6e37ac6
commit
fcd91d881e
@ -683,7 +683,7 @@ public class KeychainProvider extends ContentProvider {
|
|||||||
)) {
|
)) {
|
||||||
throw new AssertionError("Incorrect type for user packet! This is a bug!");
|
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!");
|
throw new AssertionError("Rank 0 user packet must be a user id!");
|
||||||
}
|
}
|
||||||
db.insertOrThrow(Tables.USER_PACKETS, null, values);
|
db.insertOrThrow(Tables.USER_PACKETS, null, values);
|
||||||
|
Loading…
Reference in New Issue
Block a user