mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-10 18:59:41 +02:00
Fix minor codestyle issues
This commit is contained in:
parent
200f90ffdc
commit
cb18056613
422 changed files with 1404 additions and 1444 deletions
|
@ -94,16 +94,16 @@ public class Protocol {
|
|||
public boolean printProtocol = false;
|
||||
|
||||
// responses to requests are taken form this queue
|
||||
Queue<Stanza> responses = new LinkedList<Stanza>();
|
||||
private final Queue<Stanza> responses = new LinkedList<>();
|
||||
|
||||
// list of verifications
|
||||
List<Verification<?, ?>[]> verificationList = new ArrayList<Verification<?, ?>[]>();
|
||||
private final List<Verification<?, ?>[]> verificationList = new ArrayList<>();
|
||||
|
||||
// list of requests
|
||||
List<Stanza> requests = new ArrayList<Stanza>();
|
||||
private final List<Stanza> requests = new ArrayList<>();
|
||||
|
||||
// list of all responses
|
||||
List<Stanza> responsesList = new ArrayList<Stanza>();
|
||||
private final List<Stanza> responsesList = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* Adds a responses and all verifications for the request/response pair to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue