src/main/java/com/gitblit/transport/ssh/FileKeyManager.java
@@ -90,7 +90,7 @@ @Override protected List<SshKey> getKeysImpl(String username) { try { log.info("loading keystore for {}", username); log.info("loading ssh keystore for {}", username); File keystore = getKeystore(username); if (!keystore.exists()) { return null; @@ -128,7 +128,7 @@ return list; } } catch (IOException e) { throw new RuntimeException("Canot read ssh keys", e); throw new RuntimeException("Cannot read ssh keys", e); } return null; }