This repository was archived by the owner on Nov 2, 2020. It is now read-only.
File tree 2 files changed +1
-4
lines changed
src/main/java/com/clusterws
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
<p align =" center " >
9
9
<a href="https://github.com/ClusterWS/ClusterWS-Client-Java/blob/master/LICENSE"><img src="https://img.shields.io/badge/LICENSE-MIT-AE1E80.svg?longCache=true&style=for-the-badge"></a>
10
- <a title="JitPack Version" href="https://jitpack.io/#ClusterWS/ClusterWS-Client-Java"><img src="https://img.shields.io/badge/JitPack-3.0.0 -AE1E80.svg?longCache=true&style=for-the-badge"></a>
10
+ <a title="JitPack Version" href="https://jitpack.io/#ClusterWS/ClusterWS-Client-Java"><img src="https://img.shields.io/badge/JitPack-3.0.2 -AE1E80.svg?longCache=true&style=for-the-badge"></a>
11
11
<a href="https://github.com/ClusterWS/ClusterWS-Client-JS/graphs/commit-activity"><img src="https://img.shields.io/badge/Maintain-Yes-AE1E80.svg?style=for-the-badge" alt="Maintain" /></a>
12
12
</p >
13
13
Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ public ClusterWS setClusterWSListener(IClusterWSListener clusterWSListener) {
54
54
}
55
55
56
56
public void connect () {
57
- createSocket ();
58
57
mSocket .connect ();
59
58
}
60
59
@@ -171,7 +170,6 @@ public void run() {
171
170
172
171
@ Override
173
172
public void onBinaryMessage (ByteBuffer bytes ) {
174
- System .out .println ("GOT MESSAGE" );
175
173
byte [] arr = new byte [bytes .remaining ()];
176
174
bytes .get (arr );
177
175
if (arr .length == 1 && arr [0 ] == 57 ) {
@@ -196,7 +194,6 @@ public void onMessage(String message) {
196
194
}
197
195
198
196
private void onMessageReceived (String message ) {
199
- System .out .println ("MESSAGE IS " + message );
200
197
mMessageHandler .messageDecode (ClusterWS .this , message );
201
198
}
202
199
}
You can’t perform that action at this time.
0 commit comments