mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 19:22:14 -05:00
Fix more whitespace
This commit is contained in:
parent
adb20689fe
commit
1e64f6b846
@ -704,14 +704,14 @@ public class KeychainProvider extends ContentProvider {
|
|||||||
final int match = mUriMatcher.match(uri);
|
final int match = mUriMatcher.match(uri);
|
||||||
switch (match) {
|
switch (match) {
|
||||||
case KEY_RING_KEYS: {
|
case KEY_RING_KEYS: {
|
||||||
if(values.size() != 1 || !values.containsKey(Keys.HAS_SECRET)) {
|
if (values.size() != 1 || !values.containsKey(Keys.HAS_SECRET)) {
|
||||||
throw new UnsupportedOperationException(
|
throw new UnsupportedOperationException(
|
||||||
"Only has_secret column may be updated!");
|
"Only has_secret column may be updated!");
|
||||||
}
|
}
|
||||||
// make sure we get a long value here
|
// make sure we get a long value here
|
||||||
Long mkid = Long.parseLong(uri.getPathSegments().get(1));
|
Long mkid = Long.parseLong(uri.getPathSegments().get(1));
|
||||||
String actualSelection = Keys.MASTER_KEY_ID + " = " + Long.toString(mkid);
|
String actualSelection = Keys.MASTER_KEY_ID + " = " + Long.toString(mkid);
|
||||||
if(!TextUtils.isEmpty(selection)) {
|
if (!TextUtils.isEmpty(selection)) {
|
||||||
actualSelection += " AND (" + selection + ")";
|
actualSelection += " AND (" + selection + ")";
|
||||||
}
|
}
|
||||||
count = db.update(Tables.KEYS, values, actualSelection, selectionArgs);
|
count = db.update(Tables.KEYS, values, actualSelection, selectionArgs);
|
||||||
|
Loading…
Reference in New Issue
Block a user