remove check for unsupported usb devices
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user