Skip to content

Commit dda7af0

Browse files
committed
Fixed typo
1 parent 05d2e2e commit dda7af0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/java_websocket/server/WebSocketServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public WebSocketServer( InetSocketAddress address , int decodercount , List<Draf
184184
public void start() {
185185
if( selectorthread != null )
186186
throw new IllegalStateException( getClass().getName() + " can only be started once." );
187-
new Thread( this ).start();;
187+
new Thread( this ).start();
188188
}
189189

190190
/**

0 commit comments

Comments
 (0)