*) 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
pull/1/head
theli 20 years ago
parent b2d48ebcef
commit 5f55dff297

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

Loading…
Cancel
Save