diff --git a/pom.xml b/pom.xml
index ba291dd..5358c8c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,8 +19,8 @@
17.0
4.3.6
2.2.0
- 2.2.4
- 1.3.4
+ 2.8.5
+ 1.5.0
4.11
1.9.0-rc1
diff --git a/src/main/java/com/mixer/api/resource/chat/ws/MixerChatConnectable.java b/src/main/java/com/mixer/api/resource/chat/ws/MixerChatConnectable.java
index 95c7de4..1dc3f91 100644
--- a/src/main/java/com/mixer/api/resource/chat/ws/MixerChatConnectable.java
+++ b/src/main/java/com/mixer/api/resource/chat/ws/MixerChatConnectable.java
@@ -11,6 +11,11 @@
import com.mixer.api.resource.chat.replies.ReplyHandler;
import javax.net.ssl.SSLSocketFactory;
+
+import org.java_websocket.enums.Opcode;
+import org.java_websocket.framing.FramedataImpl1;
+
+
import java.io.IOException;
public class MixerChatConnectable {
@@ -84,10 +89,6 @@ public boolean isClosing() {
return connection.isClosing();
}
- public boolean isConnecting() {
- return connection.isConnecting();
- }
-
public boolean isOpen() {
return connection.isOpen();
}
diff --git a/src/main/java/com/mixer/api/resource/constellation/ws/MixerConstellationConnectable.java b/src/main/java/com/mixer/api/resource/constellation/ws/MixerConstellationConnectable.java
index 30a868b..4d52f6e 100644
--- a/src/main/java/com/mixer/api/resource/constellation/ws/MixerConstellationConnectable.java
+++ b/src/main/java/com/mixer/api/resource/constellation/ws/MixerConstellationConnectable.java
@@ -7,7 +7,8 @@
import com.mixer.api.resource.constellation.MixerConstellation;
import com.mixer.api.resource.constellation.events.EventHandler;
import com.mixer.api.resource.constellation.replies.ReplyHandler;
-import org.java_websocket.framing.Framedata;
+
+import org.java_websocket.enums.Opcode;
import org.java_websocket.framing.FramedataImpl1;
import javax.net.ssl.SSLSocketFactory;
@@ -82,7 +83,7 @@ public void run() {
*/
private void ping()
{
- FramedataImpl1 frame = FramedataImpl1.get(Framedata.Opcode.PING);
+ FramedataImpl1 frame = FramedataImpl1.get(Opcode.PING);
frame.setFin(true);
connection.sendFrame(frame);
}
@@ -121,10 +122,6 @@ public boolean isClosing() {
return connection.isClosing();
}
- public boolean isConnecting() {
- return connection.isConnecting();
- }
-
public boolean isOpen() {
return connection.isOpen();
}