You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2016/04/14 11:52:53 UTC

lucene-solr:master: LUCENE-7218: remove wrong comment

Repository: lucene-solr
Updated Branches:
  refs/heads/master 60033b308 -> af5742cc0


LUCENE-7218: remove wrong comment


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/af5742cc
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/af5742cc
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/af5742cc

Branch: refs/heads/master
Commit: af5742cc0abe09ec00c6550387d7bedab5a10056
Parents: 60033b3
Author: Mike McCandless <mi...@apache.org>
Authored: Thu Apr 14 05:55:15 2016 -0400
Committer: Mike McCandless <mi...@apache.org>
Committed: Thu Apr 14 05:55:15 2016 -0400

----------------------------------------------------------------------
 .../java/org/apache/lucene/replicator/http/ReplicationService.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/af5742cc/lucene/replicator/src/java/org/apache/lucene/replicator/http/ReplicationService.java
----------------------------------------------------------------------
diff --git a/lucene/replicator/src/java/org/apache/lucene/replicator/http/ReplicationService.java b/lucene/replicator/src/java/org/apache/lucene/replicator/http/ReplicationService.java
index 4cb4368..e392445 100644
--- a/lucene/replicator/src/java/org/apache/lucene/replicator/http/ReplicationService.java
+++ b/lucene/replicator/src/java/org/apache/lucene/replicator/http/ReplicationService.java
@@ -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;