Add @DoNotStrip to RemoteConnection methods

Summary: Add DoNotStrip to RemoteConnection methods

Reviewed By: alexeylang

Differential Revision: D8861729

fbshipit-source-id: d2b339f49dd25379dec6620d367786a9df02d28b
This commit is contained in:
Nurzhan Bakibayev 2018-07-16 12:40:12 -07:00 committed by Facebook Github Bot
parent 123b3e1a8e
commit ecd8802c1f
1 changed files with 2 additions and 0 deletions

View File

@ -86,7 +86,9 @@ public class Inspector {
@DoNotStrip
public interface RemoteConnection {
@DoNotStrip
void onMessage(String message);
@DoNotStrip
void onDisconnect();
}