diff --git a/src/main/java/net/schmizz/sshj/transport/verification/OpenSSHKnownHosts.java b/src/main/java/net/schmizz/sshj/transport/verification/OpenSSHKnownHosts.java index 38b3c300..473d4832 100644 --- a/src/main/java/net/schmizz/sshj/transport/verification/OpenSSHKnownHosts.java +++ b/src/main/java/net/schmizz/sshj/transport/verification/OpenSSHKnownHosts.java @@ -310,7 +310,7 @@ public class OpenSSHKnownHosts protected final PublicKey key; private final KnownHostMatchers.HostMatcher matcher; - HostEntry(Marker marker, String hostPart, KeyType type, PublicKey key) throws SSHException { + public HostEntry(Marker marker, String hostPart, KeyType type, PublicKey key) throws SSHException { this.marker = marker; this.hostPart = hostPart; this.type = type;