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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user