remove unused private items (eclipse)

This commit is contained in:
zzz
2012-03-26 00:52:06 +00:00
parent 1db58dee89
commit 764a7f2e13
80 changed files with 31 additions and 399 deletions

View File

@@ -185,7 +185,6 @@ public class SAMStreamSink {
private String _remoteDestination;
private boolean _closed;
private long _started;
private long _totalReceived;
private long _lastReceivedOn;
private OutputStream _out;
@@ -222,7 +221,6 @@ public class SAMStreamSink {
}
public void received(byte data[], int offset, int len) {
if (_closed) return;
_totalReceived += len;
try {
_out.write(data, offset, len);
} catch (IOException ioe) {