Delete useless print
This commit is contained in:
parent
584b634689
commit
7cf9311f95
1 changed files with 0 additions and 2 deletions
|
|
@ -72,7 +72,6 @@ public class PGPAgent {
|
||||||
|
|
||||||
// Try GopenpgpwrapperReadKey first.
|
// Try GopenpgpwrapperReadKey first.
|
||||||
if let key = GopenpgpwrapperReadKey(pgpKeyData) {
|
if let key = GopenpgpwrapperReadKey(pgpKeyData) {
|
||||||
print("GopenpgpwrapperReadKey \(keyType)")
|
|
||||||
switch keyType {
|
switch keyType {
|
||||||
case .PUBLIC:
|
case .PUBLIC:
|
||||||
self.publicKey = key
|
self.publicKey = key
|
||||||
|
|
@ -87,7 +86,6 @@ public class PGPAgent {
|
||||||
// [ObjectivePGP.readKeys MAY CRASH!!!]
|
// [ObjectivePGP.readKeys MAY CRASH!!!]
|
||||||
if let keys = try? ObjectivePGP.readKeys(from: pgpKeyData),
|
if let keys = try? ObjectivePGP.readKeys(from: pgpKeyData),
|
||||||
let key = keys.first {
|
let key = keys.first {
|
||||||
print("ObjectivePGP \(keyType)")
|
|
||||||
keyring.import(keys: keys)
|
keyring.import(keys: keys)
|
||||||
switch keyType {
|
switch keyType {
|
||||||
case .PUBLIC:
|
case .PUBLIC:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue