Various ConnectionControl fixes

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@513 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Matthias Schiffer 2011-06-20 19:17:27 +02:00
parent 72a16316dc
commit 2d08646187
3 changed files with 63 additions and 40 deletions

View file

@ -12,8 +12,6 @@ public enum LoginError {
CONNECTION_REFUSED,
/** Password or username incorrect */
AUTHENTICATION_FAILED,
/** Username already occurs in the same channel */
RESOURCE_CONFLICT,
/** Server not found */
UNKNOWN_HOST,
/** Channel not found */

View file

@ -91,9 +91,6 @@ public class ConnectPanel extends JPanel implements IConnectPanel {
case CONNECTION_REFUSED:
text = "Die Verbindung wurde abgelehnt";
break;
case RESOURCE_CONFLICT:
text = "Es gibt bereits einen solchen Spieler";
break;
case TIMEOUT:
text = "Der Server reagiert nicht";
break;