made private things that don't need to be public

remove semantic inconsistency wrt getRemoteId(false) - it shouldn't ever timeout, since it always returns immediately
javadoc (though i wish i understood the close/close2/sendClose more clearly so i could javadoc that process)
This commit is contained in:
jrandom
2004-05-07 01:32:48 +00:00
committed by zzz
parent 997a94eecc
commit a82b951aff
2 changed files with 60 additions and 12 deletions

View File

@ -159,11 +159,7 @@ public class I2PSocketManager implements I2PSessionListener {
}
String remoteId = null;
try {
remoteId = s.getRemoteID(false);
} catch (InterruptedIOException iie) {
throw new RuntimeException("ERROR! getRemoteId(false) should never throw InterruptedIOException!");
}
remoteId = s.getRemoteID(false);
if ( (payload.length == 3) && (remoteId == null) ) {
String newID = toString(payload);