1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-10 21:11:08 +01:00

Bump "Error Prone" to 2.0.15

and fix a few things :)
This commit is contained in:
Florian Schmaus 2017-02-11 16:16:41 +01:00
parent ef0af66b21
commit 4c646436a5
246 changed files with 1122 additions and 124 deletions

View file

@ -34,7 +34,7 @@ import org.junit.Test;
import org.jxmpp.jid.Jid;
import org.jxmpp.jid.JidTestUtil;
@SuppressWarnings("deprecation")
@SuppressWarnings({"deprecation", "ReferenceEquality"})
public class ChatConnectionTest {
private DummyConnection dc;
@ -347,7 +347,7 @@ public class ChatConnectionTest {
waitListener.waitAndReset();
}
class TestChatManagerListener extends WaitForPacketListener implements ChatManagerListener {
static class TestChatManagerListener extends WaitForPacketListener implements ChatManagerListener {
private Chat newChat;
private ChatMessageListener listener;
@ -372,7 +372,7 @@ public class ChatConnectionTest {
}
}
private class TestChatServer extends Thread {
private static class TestChatServer extends Thread {
private Stanza chatPacket;
private DummyConnection con;