Fix animation in manage keys for security tokens

This commit is contained in:
Dominik Schürmann
2016-04-30 15:24:09 +02:00
parent 562d0016be
commit d72001c690
9 changed files with 47 additions and 30 deletions

View File

@@ -19,7 +19,7 @@ package org.sufficientlysecure.keychain.securitytoken;
import android.nfc.Tag;
import org.sufficientlysecure.keychain.ui.base.BaseSecurityTokenNfcActivity;
import org.sufficientlysecure.keychain.ui.base.BaseSecurityTokenActivity;
import java.io.IOException;
@@ -83,7 +83,7 @@ public class NfcTransport implements Transport {
public void connect() throws IOException {
mIsoCard = AndroidCard.get(mTag);
if (mIsoCard == null) {
throw new BaseSecurityTokenNfcActivity.IsoDepNotSupportedException("Tag does not support ISO-DEP (ISO 14443-4)");
throw new BaseSecurityTokenActivity.IsoDepNotSupportedException("Tag does not support ISO-DEP (ISO 14443-4)");
}
mIsoCard.setTimeout(TIMEOUT);

View File

@@ -341,7 +341,6 @@ public class SecurityTokenHelper {
}
}
/**
* Puts a key on the token in the given slot.
*