Fix formatting

This commit is contained in:
AsamK 2015-10-06 21:45:39 +02:00
parent 2c86b0bd9a
commit 1781984221
6 changed files with 10 additions and 8 deletions

View file

@ -69,7 +69,7 @@ class JsonIdentityKeyStore implements IdentityKeyStore {
String trustedKeyName = trustedKey.get("name").asText();
try {
trustedKeyMap.put(trustedKeyName, new IdentityKey(Base64.decode(trustedKey.get("identityKey").asText()), 0));
} catch (InvalidKeyException | IOException e) {
} catch (InvalidKeyException | IOException e) {
System.out.println(String.format("Error while decoding key for: %s", trustedKeyName));
}
}