cleanup: remove boolean parameter that is always true

This commit is contained in:
zab2
2013-10-09 14:06:16 +00:00
parent 513da3b743
commit e69fefda62

View File

@ -1254,7 +1254,7 @@ class Connection {
} }
public long getNextSendTime() { return _nextSendTime; } public long getNextSendTime() { return _nextSendTime; }
public void timeReached() { retransmit(true); } public void timeReached() { retransmit(); }
/** /**
* Retransmit the packet if we need to. * Retransmit the packet if we need to.
* *
@ -1264,11 +1264,9 @@ class Connection {
* *
* don't synchronize this, deadlock with ackPackets->ackReceived->SimpleTimer2.cancel * don't synchronize this, deadlock with ackPackets->ackReceived->SimpleTimer2.cancel
* *
* @param penalize true if this retransmission is caused by a timeout, false if we
* are just sending this packet instead of an ACK
* @return true if the packet was sent, false if it was not * @return true if the packet was sent, false if it was not
*/ */
public boolean retransmit(boolean penalize) { public boolean retransmit() {
if (_packet.getAckTime() > 0) if (_packet.getAckTime() > 0)
return false; return false;
@ -1332,7 +1330,7 @@ class Connection {
int newWindowSize = getOptions().getWindowSize(); int newWindowSize = getOptions().getWindowSize();
if (penalize && _ackSinceCongestion) { if (_ackSinceCongestion) {
// only shrink the window once per window // only shrink the window once per window
if (_packet.getSequenceNum() > _lastCongestionHighestUnacked) { if (_packet.getSequenceNum() > _lastCongestionHighestUnacked) {
congestionOccurred(); congestionOccurred();