Remove code that worked around #334 (now fixed)

This commit is contained in:
Daniel Martí 2015-12-29 22:42:49 +01:00
parent 3a8051898a
commit e29b6cbdaf

View File

@ -165,10 +165,6 @@ public final class LocalRepoKeyStore {
}; };
} catch (UnrecoverableKeyException | KeyStoreException | NoSuchAlgorithmException | CertificateException | OperatorCreationException | IOException e) { } catch (UnrecoverableKeyException | KeyStoreException | NoSuchAlgorithmException | CertificateException | OperatorCreationException | IOException e) {
Log.e(TAG, "Error loading keystore", e); Log.e(TAG, "Error loading keystore", e);
} catch (IllegalArgumentException e) {
// TODO: Remove once we have a proper fix for #334
Log.e(TAG, "Error loading keystore", e);
Log.e(TAG, "See https://gitlab.com/fdroid/fdroidclient/issues/334");
} }
} }