From b49bf09e909b11da73e73db11d4d5349c04e2e8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Sat, 1 Feb 2014 22:59:52 +0100 Subject: Cleanup --- .../main/java/org/sufficientlysecure/keychain/ui/SignKeyActivity.java | 4 +--- .../java/org/sufficientlysecure/keychain/ui/UploadKeyActivity.java | 2 -- .../main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) (limited to 'OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain') diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/SignKeyActivity.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/SignKeyActivity.java index 58c31076f..4bf2a0b67 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/SignKeyActivity.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/SignKeyActivity.java @@ -54,9 +54,7 @@ import com.actionbarsherlock.app.SherlockFragmentActivity; import com.beardedhen.androidbootstrap.BootstrapButton; /** - * gpg --sign-key - * - * signs the specified public key with the specified secret master key + * Signs the specified public key with the specified secret master key */ public class SignKeyActivity extends SherlockFragmentActivity implements SelectSecretKeyLayoutFragment.SelectSecretKeyCallback { diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/UploadKeyActivity.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/UploadKeyActivity.java index d72dd37ab..87c06c97e 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/UploadKeyActivity.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/ui/UploadKeyActivity.java @@ -40,8 +40,6 @@ import com.actionbarsherlock.app.SherlockFragmentActivity; import com.beardedhen.androidbootstrap.BootstrapButton; /** - * gpg --send-key activity - * * Sends the selected public key to a key server */ public class UploadKeyActivity extends SherlockFragmentActivity { diff --git a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java index bd583ac10..05e52fb47 100644 --- a/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java +++ b/OpenPGP-Keychain/src/main/java/org/sufficientlysecure/keychain/util/HkpKeyServer.java @@ -178,7 +178,6 @@ public class HkpKeyServer extends KeyServer { Matcher matcher = PUB_KEY_LINE.matcher(data); while (matcher.find()) { -// KeyInfo info = new KeyInfo(); ImportKeysListEntry info = new ImportKeysListEntry(); info.bitStrength = Integer.parseInt(matcher.group(1)); info.algorithm = matcher.group(2); -- cgit v1.2.3