Annotate AppRTCMobile with @Nulllable.
Bug: webrtc:8881 Change-Id: I32390b1e2586415757f0453b60d35b23160d2862 Reviewed-on: https://webrtc-review.googlesource.com/63641 Reviewed-by: Paulina Hensman <phensman@webrtc.org> Commit-Queue: Sami Kalliomäki <sakal@webrtc.org> Cr-Commit-Position: refs/heads/master@{#22580}
This commit is contained in:
committed by
Commit Bot
parent
6a4d411023
commit
06e363a6e6
@ -11,6 +11,7 @@
|
||||
package org.appspot.apprtc;
|
||||
|
||||
import android.os.Handler;
|
||||
import javax.annotation.Nullable;
|
||||
import android.util.Log;
|
||||
import de.tavendo.autobahn.WebSocket.WebSocketConnectionObserver;
|
||||
import de.tavendo.autobahn.WebSocketConnection;
|
||||
@ -39,7 +40,9 @@ public class WebSocketChannelClient {
|
||||
private WebSocketConnection ws;
|
||||
private String wsServerUrl;
|
||||
private String postServerUrl;
|
||||
@Nullable
|
||||
private String roomID;
|
||||
@Nullable
|
||||
private String clientID;
|
||||
private WebSocketConnectionState state;
|
||||
// Do not remove this member variable. If this is removed, the observer gets garbage collected and
|
||||
|
||||
Reference in New Issue
Block a user