Mercurial > 510Connectbot
diff src/ch/ethz/ssh2/transport/ServerKexManager.java @ 305:d2b303406d63 ganymed
remove extra override annotations that generate eclipse compiler errors
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 12:09:51 -0700 |
parents | beaccc9df37b |
children | 90e47d99ea54 071eccdff8ea |
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/transport/ServerKexManager.java Tue Jul 29 20:28:01 2014 -0700 +++ b/src/ch/ethz/ssh2/transport/ServerKexManager.java Wed Jul 30 12:09:51 2014 -0700 @@ -6,15 +6,13 @@ import java.io.IOException; import java.security.DigestException; -import java.security.KeyPair; -import java.security.PublicKey; -import java.security.SecureRandom; import java.security.interfaces.DSAPrivateKey; import java.security.interfaces.DSAPublicKey; import java.security.interfaces.ECPrivateKey; import java.security.interfaces.ECPublicKey; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAPublicKey; + import ch.ethz.ssh2.ConnectionInfo; import ch.ethz.ssh2.PacketTypeException; import ch.ethz.ssh2.auth.ServerAuthenticationManager; @@ -45,7 +43,6 @@ this.state = state; } - @Override public void handleFailure(final IOException failure) { synchronized(accessLock) { connectionClosed = true; @@ -53,7 +50,6 @@ } } - @Override public void handleMessage(byte[] msg) throws IOException { PacketKexInit kip;