Make PacketCollector fields final where possible

This commit is contained in:
Florian Schmaus 2014-10-09 23:51:18 +02:00
parent 36744ea0d1
commit 6dcba44557
1 changed files with 4 additions and 3 deletions

View File

@ -45,9 +45,10 @@ public class PacketCollector {
private static final Logger LOGGER = Logger.getLogger(PacketCollector.class.getName());
private PacketFilter packetFilter;
private ArrayBlockingQueue<Packet> resultQueue;
private XMPPConnection connection;
private final PacketFilter packetFilter;
private final ArrayBlockingQueue<Packet> resultQueue;
private final XMPPConnection connection;
private boolean cancelled = false;
/**