*) Bugfix for "Binäre Nullen auf der page: Index Creation: Indexing Queue"

See: http://www.yacy-forum.de/viewtopic.php?p=6877#6877

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@577 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
theli 2005-08-23 08:37:42 +00:00
parent b2d48ebcef
commit 5f55dff297

View File

@ -152,7 +152,7 @@ public class plasmaSwitchboardQueue {
this.initiator = initiator;
this.depth = depth;
this.profileHandle = profileHandle;
this.anchorName = anchorName;
this.anchorName = (anchorName==null)?"":anchorName.trim();
this.profileEntry = null;
this.responseHeader = null;
@ -173,7 +173,7 @@ public class plasmaSwitchboardQueue {
this.initiator = (row[4] == null) ? null : new String(row[4]);
this.depth = (int) serverCodings.enhancedCoder.decodeBase64Long(new String(row[5]));
this.profileHandle = new String(row[6]);
this.anchorName = (row[7] == null) ? null : new String(row[7]);
this.anchorName = (row[7] == null) ? null : (new String(row[7])).trim();
this.profileEntry = null;
this.responseHeader = null;