diff src/ch/ethz/ssh2/transport/ClientKexManager.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 ab3a99f11a36
children 90e47d99ea54 071eccdff8ea
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/transport/ClientKexManager.java	Tue Jul 29 20:28:01 2014 -0700
+++ b/src/ch/ethz/ssh2/transport/ClientKexManager.java	Wed Jul 30 12:09:51 2014 -0700
@@ -7,6 +7,9 @@
 import java.io.IOException;
 import java.security.DigestException;
 import java.security.SecureRandom;
+import java.security.interfaces.DSAPublicKey;
+import java.security.interfaces.ECPublicKey;
+import java.security.interfaces.RSAPublicKey;
 
 import ch.ethz.ssh2.ConnectionInfo;
 import ch.ethz.ssh2.PacketTypeException;
@@ -28,9 +31,6 @@
 import ch.ethz.ssh2.packets.PacketKexDhGexRequestOld;
 import ch.ethz.ssh2.packets.PacketKexInit;
 import ch.ethz.ssh2.packets.Packets;
-import java.security.interfaces.DSAPublicKey;
-import java.security.interfaces.ECPublicKey;
-import java.security.interfaces.RSAPublicKey;
 import ch.ethz.ssh2.signature.DSASHA1Verify;
 import ch.ethz.ssh2.signature.ECDSASHA2Verify;
 import ch.ethz.ssh2.signature.RSASHA1Verify;
@@ -83,7 +83,6 @@
         throw new IOException("Unknown server host key algorithm '" + kxs.np.server_host_key_algo + "'");
     }
 
-    @Override
     public void handleFailure(final IOException failure) {
         synchronized(accessLock) {
             connectionClosed = true;
@@ -91,7 +90,6 @@
         }
     }
 
-    @Override
     public synchronized void handleMessage(byte[] msg) throws IOException {
         PacketKexInit kip;