mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Make PacketCollector fields final where possible
This commit is contained in:
parent
36744ea0d1
commit
6dcba44557
1 changed files with 4 additions and 3 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue