Mercurial > 510Connectbot
comparison src/ch/ethz/ssh2/transport/TransportManager.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 | ca5dd224a87b |
children | 071eccdff8ea |
comparison
equal
deleted
inserted
replaced
304:abad243cb341 | 305:d2b303406d63 |
---|---|
5 | 5 |
6 package ch.ethz.ssh2.transport; | 6 package ch.ethz.ssh2.transport; |
7 | 7 |
8 import java.io.IOException; | 8 import java.io.IOException; |
9 import java.io.InterruptedIOException; | 9 import java.io.InterruptedIOException; |
10 import java.net.Socket; | |
10 import java.security.KeyPair; | 11 import java.security.KeyPair; |
11 import java.security.PrivateKey; | |
12 import java.security.interfaces.DSAPrivateKey; | |
13 import java.security.interfaces.ECPrivateKey; | |
14 import java.security.interfaces.RSAPrivateKey; | |
15 import java.net.Socket; | |
16 import java.util.ArrayList; | 12 import java.util.ArrayList; |
17 import java.util.List; | 13 import java.util.List; |
18 | 14 |
19 import ch.ethz.ssh2.ConnectionInfo; | 15 import ch.ethz.ssh2.ConnectionInfo; |
20 import ch.ethz.ssh2.ConnectionMonitor; | 16 import ch.ethz.ssh2.ConnectionMonitor; |
77 this.message = message; | 73 this.message = message; |
78 } | 74 } |
79 } | 75 } |
80 | 76 |
81 private final class AsynchronousWorker implements Runnable { | 77 private final class AsynchronousWorker implements Runnable { |
82 @Override | |
83 public void run() { | 78 public void run() { |
84 while(true) { | 79 while(true) { |
85 final AsynchronousEntry item; | 80 final AsynchronousEntry item; |
86 synchronized(asynchronousQueue) { | 81 synchronized(asynchronousQueue) { |
87 if(asynchronousQueue.size() == 0) { | 82 if(asynchronousQueue.size() == 0) { |