diff options
author | Jonathan Nieder <jrn@google.com> | 2018-11-20 16:18:44 -0800 |
---|---|---|
committer | Jonathan Nieder <jrn@google.com> | 2018-11-20 16:18:44 -0800 |
commit | 647cc8f6040cbcdeb6ca87f68ff70734357783c8 (patch) | |
tree | 005cc46f81b858ae9e1e5daffaaa0a6ca194f584 /org.eclipse.jgit.ssh.apache/src | |
parent | e751c878b04a6d4d341fb8f9492783a70e1ebe86 (diff) | |
download | jgit-647cc8f6040cbcdeb6ca87f68ff70734357783c8.tar.gz jgit-647cc8f6040cbcdeb6ca87f68ff70734357783c8.zip |
Remove unnecessary modifiers from interfaces
This continues what commit d9ac7ddf1026123fee6c4477d172d614522dfc08
(Remove unnecessary modifiers from interfaces, 2018-11-15) started.
Change-Id: I89720985a5a986722a0dcb9b5e9bbc25996bd5b3
Diffstat (limited to 'org.eclipse.jgit.ssh.apache/src')
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/internal/transport/sshd/auth/AuthenticationHandler.java b/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/internal/transport/sshd/auth/AuthenticationHandler.java index 34724687a2..0e98a2e17a 100644 --- a/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/internal/transport/sshd/auth/AuthenticationHandler.java +++ b/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/internal/transport/sshd/auth/AuthenticationHandler.java @@ -117,5 +117,5 @@ public interface AuthenticationHandler<ParameterType, TokenType> boolean isDone(); @Override - public void close(); + void close(); } diff --git a/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/transport/sshd/KeyCache.java b/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/transport/sshd/KeyCache.java index d1865d9f73..d8c1d30426 100644 --- a/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/transport/sshd/KeyCache.java +++ b/org.eclipse.jgit.ssh.apache/src/org/eclipse/jgit/transport/sshd/KeyCache.java @@ -70,5 +70,5 @@ public interface KeyCache { * Removes all {@link KeyPair} from this cache and destroys their private * keys. This cache instance must not be used anymore thereafter. */ - public void close(); + void close(); } |