File tree 5 files changed +2
-5
lines changed
src/net/tootallnate/websocket
5 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ public void onClose() {
42
42
* The JFrame for our Chat client.
43
43
*/
44
44
private static class Frame extends JFrame implements ActionListener {
45
+ private static final long serialVersionUID = -6056260699202978657L ;
46
+
45
47
private final JTextField uriField ;
46
48
private final JButton connect ;
47
49
private final JButton close ;
Original file line number Diff line number Diff line change 1
1
import java .io .IOException ;
2
2
3
3
import net .tootallnate .websocket .WebSocket ;
4
- import net .tootallnate .websocket .WebSocketDraft ;
5
4
import net .tootallnate .websocket .WebSocketServer ;
6
5
7
6
/**
Original file line number Diff line number Diff line change 3
3
import java .io .IOException ;
4
4
import java .nio .ByteBuffer ;
5
5
import java .nio .channels .NotYetConnectedException ;
6
- import java .nio .channels .SelectionKey ;
7
- import java .nio .channels .Selector ;
8
6
import java .nio .channels .SocketChannel ;
9
7
import java .nio .charset .Charset ;
10
8
import java .security .NoSuchAlgorithmException ;
Original file line number Diff line number Diff line change 4
4
import java .net .InetSocketAddress ;
5
5
import java .net .URI ;
6
6
import java .nio .ByteBuffer ;
7
- import java .nio .channels .ClosedChannelException ;
8
7
import java .nio .channels .SelectionKey ;
9
8
import java .nio .channels .Selector ;
10
9
import java .nio .channels .SocketChannel ;
Original file line number Diff line number Diff line change 11
11
import java .util .Iterator ;
12
12
import java .util .Properties ;
13
13
import java .util .Set ;
14
- import java .util .concurrent .BlockingQueue ;
15
14
import java .util .concurrent .CopyOnWriteArraySet ;
16
15
import java .util .concurrent .LinkedBlockingQueue ;
17
16
You can’t perform that action at this time.
0 commit comments