removed test (in yacy.init)

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4641 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
danielr 17 years ago
parent 5c3c1fdf41
commit 2aef1414f5

@ -70,8 +70,7 @@ server.maxTrackingTime = 3600000
# The property here can also be a url where the definition can be loaded. # The property here can also be a url where the definition can be loaded.
# In case of privately managed networks, this configuration must be changed BEFORE it is released # In case of privately managed networks, this configuration must be changed BEFORE it is released
# to the members of the separated network peers. # to the members of the separated network peers.
#network.unit.definition = defaults/yacy.network.freeworld.unit network.unit.definition = defaults/yacy.network.freeworld.unit
network.unit.definition = defaults/yacy.network.intranet.unit
network.group.definition = defaults/yacy.network.group network.group.definition = defaults/yacy.network.group
# Update process properties # Update process properties

@ -501,7 +501,7 @@ public final class htmlFilterWriter extends Writer {
if (c > 7 && c <= 13) return false; if (c > 7 && c <= 13) return false;
//if (Character.isLetterOrDigit(c)) return false; //if (Character.isLetterOrDigit(c)) return false;
// return false; // return false;
// System.out.println("BINARY HINT: " + (int) b); System.out.println("BINARY HINT: " + (int) c);
return true; return true;
} }

@ -125,7 +125,6 @@ public final class serverInstantBusyThread extends serverAbstractBusyThread impl
this.terminate(false); this.terminate(false);
} catch (InvocationTargetException e) { } catch (InvocationTargetException e) {
String targetException = e.getTargetException().getMessage(); String targetException = e.getTargetException().getMessage();
e.getTargetException().printStackTrace();
e.printStackTrace(); e.printStackTrace();
if ((targetException != null) && ((targetException.indexOf("heap space") > 0) || (targetException.indexOf("NullPointerException") > 0))) e.getTargetException().printStackTrace(); if ((targetException != null) && ((targetException.indexOf("heap space") > 0) || (targetException.indexOf("NullPointerException") > 0))) e.getTargetException().printStackTrace();
serverLog.logSevere("BUSYTHREAD", "Runtime Error in serverInstantThread.job, thread '" + this.getName() + "': " + e.getMessage() + "; target exception: " + targetException, e.getTargetException()); serverLog.logSevere("BUSYTHREAD", "Runtime Error in serverInstantThread.job, thread '" + this.getName() + "': " + e.getMessage() + "; target exception: " + targetException, e.getTargetException());

Loading…
Cancel
Save