forked from I2P_Developers/i2p.i2p
Findbugs: A stab at squashing some issues across the board. Probably more to follow.
This commit is contained in:
@ -238,10 +238,7 @@ public class PcapWriter {
|
||||
seq = pkt.getSequenceNum();
|
||||
long acked = 0;
|
||||
if (con != null) {
|
||||
if (isInbound)
|
||||
acked = getLowestAckedThrough(pkt, con);
|
||||
else
|
||||
acked = getLowestAckedThrough(pkt, con);
|
||||
acked = getLowestAckedThrough(pkt, con);
|
||||
}
|
||||
DataHelper.writeLong(_fos, 4, pkt.getSequenceNum());
|
||||
DataHelper.writeLong(_fos, 4, acked);
|
||||
|
Reference in New Issue
Block a user