This commit is contained in:
地平线
2015-08-21 09:47:18 +08:00
parent cddbef5e8f
commit 6b1b8be177
2 changed files with 1 additions and 11 deletions

View File

@@ -66,14 +66,9 @@ public class ChatWebSocketServlet extends WebSocketServlet {
@Override @Override
protected Serializable createGroupid() { protected Serializable createGroupid() {
return ""; return "";
} }
}; };
} }
@Override
public String name() {
return "chat";
}
} }

View File

@@ -27,11 +27,6 @@ public class VideoWebSocketServlet extends WebSocketServlet {
private final Map<Serializable, String> users = new HashMap<>(); private final Map<Serializable, String> users = new HashMap<>();
@Override
public String name() {
return "listen";
}
private static final class Entry { private static final class Entry {
public WebSocket socket; public WebSocket socket;