Remove modifiers 'public' and 'abstract' from interface methods
These modifiers are unnecessary (default for interface methods). Change-Id: I5ad21dded21059922fb00449ba44e98037311ac4
This commit is contained in:
@@ -19,8 +19,8 @@ import com.google.gerrit.reviewdb.client.AccountSshKey;
|
||||
|
||||
/** Permits controlling the contents of the SSH key cache area. */
|
||||
public interface SshKeyCache {
|
||||
public void evict(String username);
|
||||
void evict(String username);
|
||||
|
||||
public AccountSshKey create(AccountSshKey.Id id, String encoded)
|
||||
AccountSshKey create(AccountSshKey.Id id, String encoded)
|
||||
throws InvalidSshKeyException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user