- interne Variablen als private markiert
authorfelix <felix@a944a559-bf0e-0410-8ddc-85264b264b6c>
Thu, 17 May 2007 13:16:26 +0000 (13:16 +0000)
committerfelix <felix@a944a559-bf0e-0410-8ddc-85264b264b6c>
Thu, 17 May 2007 13:16:26 +0000 (13:16 +0000)
git-svn-id: https://www.internetallee.de/svn/bytewurf@26 a944a559-bf0e-0410-8ddc-85264b264b6c

projekte/netzschalter/src/de/bytewurf/projekte/netzschalter/HostConfig.java

index 7b451c2..772c3e9 100644 (file)
@@ -15,9 +15,9 @@ import java.net.UnknownHostException;
 public class HostConfig {
        public static final int MIN_PORT_NUMBER = 0;
        public static final int MAX_PORT_NUMBER = (1<<16);
-       InetAddress host;
-       int portA = 0;
-       int portB = 0;
+       private InetAddress host;
+       private int portA = 0;
+       private int portB = 0;
        
        public String getHostname() {
                if (host == null)