From 2065138a41194c64630e4765676dda17f69104aa Mon Sep 17 00:00:00 2001 From: allo Date: Wed, 8 Mar 2006 13:35:38 +0000 Subject: [PATCH] =?UTF-8?q?reverted=20last=20Commit.=20@Orbiter:=20kannst?= =?UTF-8?q?=20du=20dich=20dann=20mal=20drum=20k=C3=BCmmern,=20wenn=20ich?= =?UTF-8?q?=20versuche=20die=20ganze=20Sache=20ans=20Laufen=20zu=20bringen?= =?UTF-8?q?,=20hast=20du=20jedesmal=20was=20dagegen.=20Dann=20mach=20du=20?= =?UTF-8?q?es=20bitte,=20du=20wirst=20ja=20wissen=20was=20du=20willst...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1860 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/yacy/yacySeed.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/de/anomic/yacy/yacySeed.java b/source/de/anomic/yacy/yacySeed.java index d2faba092..942a7db05 100644 --- a/source/de/anomic/yacy/yacySeed.java +++ b/source/de/anomic/yacy/yacySeed.java @@ -613,8 +613,7 @@ public class yacySeed { final String ip = (String) this.dna.get(IP); if (ip == null) { return "IP is null"; } if (ip.length() < 8) { return "IP is too short: " + ip; } - //if (!natLib.isProper(ip)) { return "IP is not proper: " + ip; } //this does not work with staticIP - //TODO: try to resolv it, if its a hostname + if (!natLib.isProper(ip)) { return "IP is not proper: " + ip; } //this does not work with staticIP return null; }