remove check for unsupported usb devices

This commit is contained in:
Vincent Breitmoser
2017-11-22 16:19:26 +01:00
parent 8c2c131be6
commit 1f7c7f49d4
4 changed files with 0 additions and 26 deletions

View File

@@ -1018,10 +1018,6 @@ public class SecurityTokenConnection {
SecurityTokenInfo info = SecurityTokenInfo
.create(transportType, tokenType, fingerprints, aid, userId, url, pwInfo[4], pwInfo[6], hasLifeCycleManagement);
if (! info.isSecurityTokenSupported()) {
throw new UnsupportedSecurityTokenException();
}
return info;
}

View File

@@ -1,15 +0,0 @@
package org.sufficientlysecure.keychain.securitytoken;
import java.io.IOException;
public class UnsupportedSecurityTokenException extends IOException {
UnsupportedSecurityTokenException() {
super();
}
UnsupportedSecurityTokenException(String detailMessage) {
super(detailMessage);
}
}