1
0
Fork 0
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:
Paul Schaub 2017-12-13 23:10:11 +01:00 committed by Florian Schmaus
parent 200f90ffdc
commit cb18056613
422 changed files with 1404 additions and 1444 deletions

View file

@ -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