From 647cc8f6040cbcdeb6ca87f68ff70734357783c8 Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Tue, 20 Nov 2018 16:18:44 -0800 Subject: Remove unnecessary modifiers from interfaces This continues what commit d9ac7ddf1026123fee6c4477d172d614522dfc08 (Remove unnecessary modifiers from interfaces, 2018-11-15) started. Change-Id: I89720985a5a986722a0dcb9b5e9bbc25996bd5b3 --- .../jgit/internal/transport/sshd/auth/AuthenticationHandler.java | 2 +- .../src/org/eclipse/jgit/transport/sshd/KeyCache.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'org.eclipse.jgit.ssh.apache/src') 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 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(); } -- cgit v1.2.3