AccountSshKey: Make members private and remove default constructor

The default constructor was needed for instantiated this class in the
GWT UI, but the GWT UI is no longer using this class.

Change-Id: I6ad28e50d2d617eb91fcff927ea77ac788d61833
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2018-02-05 11:43:49 +01:00
parent 8972f427fc
commit 9640a61a84

View File

@@ -57,13 +57,9 @@ public final class AccountSshKey {
}
}
protected AccountSshKey.Id id;
protected String sshPublicKey;
protected boolean valid;
protected AccountSshKey() {}
private AccountSshKey.Id id;
private String sshPublicKey;
private boolean valid;
public AccountSshKey(AccountSshKey.Id i, String pub) {
id = i;