LUCENE-7218: remove wrong comment

This commit is contained in:
Mike McCandless 2016-04-14 05:55:15 -04:00
parent 6109ac2549
commit feee5e1400
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public class ReplicationService {
if (token == null) {
resOut.write(0); // marker for null token
} else {
resOut.write(1); // marker for null token
resOut.write(1);
token.serialize(new DataOutputStream(resOut));
}
break;