Merge pull request #400 from maxd/public_constructor_of_host_entry

HostEntry constructor must be public
This commit is contained in:
Jeroen van Erp
2018-02-20 23:16:41 +01:00
committed by GitHub

View File

@@ -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;