From b061c9e1f749f6e1392eaa9e1746e30f3a2a6d0d Mon Sep 17 00:00:00 2001 From: Dor Bivas Date: Tue, 15 Apr 2014 11:25:19 +0300 Subject: Code documentation fixes --- src/Server/ChatServer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Server/ChatServer.java') diff --git a/src/Server/ChatServer.java b/src/Server/ChatServer.java index 6d58c49..641c173 100644 --- a/src/Server/ChatServer.java +++ b/src/Server/ChatServer.java @@ -15,7 +15,7 @@ public class ChatServer public static ChatServer server; /** removing connection from the iterator. - * @param connection */ + * @param con connection */ public void connectionRemove(Connection con) { this.connections.remove(con); @@ -35,7 +35,7 @@ public class ChatServer } /** check if nick already used. if not add it. - * @param nick */ + * @param nick the new nick name to set */ public boolean addNick (String nick) { if (this.nicks.get(nick) != null) @@ -48,7 +48,7 @@ public class ChatServer } /** remove nick which is no longer in use. - * @param nick */ + * @param nick the nick to remove*/ public void removeNick (String nick) { this.nicks.remove(nick); -- cgit v1.2.3