mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 17:19:39 +02:00
Add errorprone check and fix found errors
Adds gradle-errorprone-plugin 0.0.8, requires Gradle 2.6.
This commit is contained in:
parent
8096da43e0
commit
d728204890
23 changed files with 64 additions and 44 deletions
|
@ -183,6 +183,7 @@ import org.jxmpp.jid.Jid;
|
|||
* @see JingleMediaManager
|
||||
* @see BasicTransportManager , STUNTransportManager, BridgedTransportManager, TransportResolver, BridgedResolver, ICEResolver, STUNResolver and BasicResolver.
|
||||
*/
|
||||
@SuppressWarnings("SynchronizeOnNonFinalField")
|
||||
public class JingleManager implements JingleSessionListener {
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(JingleManager.class.getName());
|
||||
|
|
|
@ -51,7 +51,7 @@ public class AudioReceiver implements ReceiveStreamListener, SessionListener,
|
|||
|
||||
boolean dataReceived = false;
|
||||
|
||||
Object dataSync;
|
||||
final Object dataSync;
|
||||
JingleMediaSession jingleMediaSession;
|
||||
|
||||
public AudioReceiver(final Object dataSync, final JingleMediaSession jingleMediaSession) {
|
||||
|
|
|
@ -44,6 +44,7 @@ import org.jxmpp.jid.Jid;
|
|||
* @author Thiago Camargo
|
||||
* @author Alvaro Saurin
|
||||
*/
|
||||
@SuppressWarnings("EqualsHashCode")
|
||||
public abstract class TransportCandidate {
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(TransportCandidate.class.getName());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue