Author: nextgens
Date: 2007-05-30 21:09:33 +0000 (Wed, 30 May 2007)
New Revision: 13403

Modified:
   trunk/freenet/src/freenet/clients/http/FirstTimeWizardToadlet.java
Log:
not working but fix the build

Modified: trunk/freenet/src/freenet/clients/http/FirstTimeWizardToadlet.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/FirstTimeWizardToadlet.java  
2007-05-30 20:54:23 UTC (rev 13402)
+++ trunk/freenet/src/freenet/clients/http/FirstTimeWizardToadlet.java  
2007-05-30 21:09:33 UTC (rev 13403)
@@ -134,14 +134,11 @@

                        Enumeration interfaces = 
NetworkInterface.getNetworkInterfaces();
                        HTMLNode bandwidthForm = 
ctx.addFormChild(bandwidthInfoboxContent, ".", "networkForm");
-                       // We always want that... don't we ?
-                       bandwidthForm.addChild("input", new String[] { "type", 
"name", "value"}, new String[] { "hidden", "127.0.0.1", "true" });

                        short ifCount = 0;
                        HTMLNode ifList = new HTMLNode("div", "class", 
"interface");
                        while(interfaces.hasMoreElements()) {
                                NetworkInterface currentInterface = 
(NetworkInterface) interfaces.nextElement();
-                               if((currentInterface == null) || 
(currentInterface.isLoopback())) continue;

                                Enumeration ipAddresses = 
currentInterface.getInetAddresses();
                                while(ipAddresses.hasMoreElements()) {


Reply via email to