diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-03-10 02:13:36 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2015-03-10 02:13:36 +0100 |
commit | b3257e0ffa53f93d550d71c1a5ffcecb4f4df0e5 (patch) | |
tree | 5749cb4382a5d747d996fee2f0527011dcabc5db /OpenKeychain/src/main/java/org | |
parent | ae1c80e8b39e932da2733d8e7781a58214f72534 (diff) | |
download | open-keychain-b3257e0ffa53f93d550d71c1a5ffcecb4f4df0e5.tar.gz open-keychain-b3257e0ffa53f93d550d71c1a5ffcecb4f4df0e5.tar.bz2 open-keychain-b3257e0ffa53f93d550d71c1a5ffcecb4f4df0e5.zip |
Ripple
Diffstat (limited to 'OpenKeychain/src/main/java/org')
-rw-r--r-- | OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ContactHelper.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ContactHelper.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ContactHelper.java index 07144e264..1413273e8 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ContactHelper.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ContactHelper.java @@ -386,7 +386,7 @@ public class ContactHelper { // Do not store expired or revoked keys in contact db - and remove them if they already exist if (isExpired || isRevoked) { - Log.d(Constants.TAG, "Expired or revoked: Deleting " + rawContactId); + Log.d(Constants.TAG, "Expired or revoked: Deleting rawContactId " + rawContactId); if (rawContactId != -1) { deleteRawContactById(resolver, rawContactId); } @@ -423,8 +423,6 @@ public class ContactHelper { /** * Delete all raw contacts associated to OpenKeychain. - * <p/> - * TODO: Does this work? */ private static int debugDeleteRawContacts(ContentResolver resolver) { //allows us to actually wipe the RawContact from the device, otherwise would be just flagged |