File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,7 @@ import sc.shared.Score
1919import java.io.Closeable
2020import java.io.IOException
2121
22- /* *
23- * The lobby will help clients find an open game or create new games to play with
24- * another client.
25- */
22+ /* * The lobby joins clients into a game by finding open rooms or creating new ones. */
2623open class Lobby : GameRoomManager (), IClientListener, Closeable {
2724 private val logger = LoggerFactory .getLogger(Lobby ::class .java)
2825
Original file line number Diff line number Diff line change @@ -107,8 +107,7 @@ private void startSocketListener() throws IOException {
107107 usedPort );
108108 } catch (IOException e ) {
109109 logger .error ("Could not start server on port " + port , e );
110- throw e ;
111- // do not throw a new IOException to preserve the inheritance hierarchy
110+ throw e ; // do not throw a new IOException to preserve the inheritance hierarchy
112111 }
113112 }
114113
You can’t perform that action at this time.
0 commit comments