diff options
Diffstat (limited to 'OpenKeychain/src/main/java')
4 files changed, 11 insertions, 11 deletions
| diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java index cacceb5d0..446699a81 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java @@ -77,7 +77,7 @@ public class KeychainApplication extends Application {          }          */ -        // Create APG directory on sdcard if not existing +        // Create OpenKeychain directory on sdcard if not existing          if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {              if (!Constants.Path.APP_DIR.exists() && !Constants.Path.APP_DIR.mkdirs()) {                  // ignore this for now, it's not crucial diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java index 8856da8b0..d05ce3d5c 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/UncachedKeyRing.java @@ -330,7 +330,7 @@ public class UncachedKeyRing {                  }                  if (cert.isLocal()) { -                    // Creation date in the future? No way! +                    // Remove revocation certs with "local" flag                      log.add(LogType.MSG_KC_REVOKE_BAD_LOCAL, indent);                      modified = PGPPublicKey.removeCertification(modified, zert);                      badCerts += 1; diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java index a2988f2b2..2911496a6 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java @@ -78,7 +78,7 @@ import java.util.Iterator;  import java.util.concurrent.atomic.AtomicBoolean;  /** - * This Service contains all important long lasting operations for APG. It receives Intents with + * This Service contains all important long lasting operations for OpenKeychain. It receives Intents with   * data from the activities or other apps, queues these intents, executes them, and stops itself   * after doing them.   */ diff --git a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ShareHelper.java b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ShareHelper.java index 27f026f80..51e58565f 100644 --- a/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ShareHelper.java +++ b/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/util/ShareHelper.java @@ -1,10 +1,3 @@ -package org.sufficientlysecure.keychain.util; - -import android.content.Context; -import android.content.Intent; -import android.content.pm.LabeledIntent; -import android.content.pm.ResolveInfo; -import android.os.Build;  /*   * Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>   * @@ -22,6 +15,13 @@ import android.os.Build;   * along with this program.  If not, see <http://www.gnu.org/licenses/>.   */ +package org.sufficientlysecure.keychain.util; + +import android.content.Context; +import android.content.Intent; +import android.content.pm.LabeledIntent; +import android.content.pm.ResolveInfo; +import android.os.Build;  import android.os.Parcelable;  import java.util.ArrayList; @@ -38,7 +38,7 @@ public class ShareHelper {      }      /** -     * Create Intent Chooser but exclude OK's EncryptActivity. +     * Create Intent Chooser but exclude specific activites, e.g., EncryptActivity to prevent encrypting again       * <p/>       * Put together from some stackoverflow posts...       */ | 
