Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@472 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Aug 1, 2005
1 parent 93811dc commit 7e3e9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaSwitchboardQueue.java
Expand Up @@ -171,7 +171,7 @@ public Entry(byte[][] row) {
this.initiator = new String(row[4]);
this.depth = (int) serverCodings.enhancedCoder.decodeBase64Long(new String(row[5]));
this.profileHandle = new String(row[6]);
this.anchorName = new String(row[7]);
this.anchorName = (row[7] == null) ? null : new String(row[7]);

this.profileEntry = null;
this.responseHeader = null;
Expand Down

0 comments on commit 7e3e9ba

Please sign in to comment.