Skip to content

Commit 8e68f28

Browse files
Removed "public" in interface
Change-Id: I4509c4d2db8f4e3521f2b2fe770a6be4d9b05dae
1 parent 448acff commit 8e68f28

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

websockets/src/main/java/com/appunite/websocket/WebSocketListener.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public interface WebSocketListener {
3232
* @throws InterruptedException
3333
* @throws NotConnectedException
3434
*/
35-
public void onConnected() throws IOException, InterruptedException,
35+
void onConnected() throws IOException, InterruptedException,
3636
NotConnectedException;
3737

3838
/**
@@ -42,7 +42,7 @@ public void onConnected() throws IOException, InterruptedException,
4242
* @throws InterruptedException
4343
* @throws NotConnectedException
4444
*/
45-
public void onStringMessage(String message) throws IOException,
45+
void onStringMessage(String message) throws IOException,
4646
InterruptedException, NotConnectedException;
4747

4848
/**
@@ -52,7 +52,7 @@ public void onStringMessage(String message) throws IOException,
5252
* @throws InterruptedException
5353
* @throws NotConnectedException
5454
*/
55-
public void onBinaryMessage(byte[] data) throws IOException,
55+
void onBinaryMessage(byte[] data) throws IOException,
5656
InterruptedException, NotConnectedException;
5757

5858
/**
@@ -62,7 +62,7 @@ public void onBinaryMessage(byte[] data) throws IOException,
6262
* @throws InterruptedException
6363
* @throws NotConnectedException
6464
*/
65-
public void onPing(byte[] data) throws IOException, InterruptedException,
65+
void onPing(byte[] data) throws IOException, InterruptedException,
6666
NotConnectedException;
6767

6868
/**
@@ -72,7 +72,7 @@ public void onPing(byte[] data) throws IOException, InterruptedException,
7272
* @throws InterruptedException
7373
* @throws NotConnectedException
7474
*/
75-
public void onPong(byte[] data) throws IOException, InterruptedException,
75+
void onPong(byte[] data) throws IOException, InterruptedException,
7676
NotConnectedException;
7777

7878
/**
@@ -82,7 +82,7 @@ public void onPong(byte[] data) throws IOException, InterruptedException,
8282
* @throws InterruptedException
8383
* @throws NotConnectedException
8484
*/
85-
public void onServerRequestedClose(byte[] data) throws IOException,
85+
void onServerRequestedClose(byte[] data) throws IOException,
8686
InterruptedException, NotConnectedException;
8787

8888
/**
@@ -92,7 +92,7 @@ public void onServerRequestedClose(byte[] data) throws IOException,
9292
* @throws InterruptedException
9393
* @throws NotConnectedException
9494
*/
95-
public void onUnknownMessage(byte[] data) throws IOException,
95+
void onUnknownMessage(byte[] data) throws IOException,
9696
InterruptedException, NotConnectedException;
9797

9898
}

0 commit comments

Comments
 (0)