aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-01-13 00:39:51 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-01-13 00:39:51 +0100
commitface67d64b06f14913fff9ce61ae4a23421cec28 (patch)
treea5054d46f9130a55bd57c2b095ba93855d101f37 /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java
parentc740d409c4f8977da22738f98f16f6b3f624ea73 (diff)
downloadopen-keychain-face67d64b06f14913fff9ce61ae4a23421cec28.tar.gz
open-keychain-face67d64b06f14913fff9ce61ae4a23421cec28.tar.bz2
open-keychain-face67d64b06f14913fff9ce61ae4a23421cec28.zip
key view is working
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java
index 8fa2df1f5..9f3cd8e88 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/helper/OtherHelper.java
@@ -79,23 +79,4 @@ public class OtherHelper {
}
}
- /**
- * Splits userId string into naming part and email part
- *
- * @param userId
- * @return array with naming (0) and email (1)
- */
- public static String[] splitUserId(String userId) {
- String[] output = new String[2];
-
- String chunks[] = userId.split(" <", 2);
- userId = chunks[0];
- if (chunks.length > 1) {
- output[1] = "<" + chunks[1];
- }
- output[0] = userId;
-
- return output;
- }
-
}