You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by sy...@apache.org on 2016/10/02 14:36:06 UTC

[48/50] [abbrv] lucenenet git commit: Updated comment with a TODO, since this assertion should be passing, but is not.

Updated comment with a TODO, since this assertion should be passing, but is not.


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6a61cfbc
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6a61cfbc
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6a61cfbc

Branch: refs/heads/master
Commit: 6a61cfbcc3081ef0158dbd26d5d845019567737b
Parents: e0146cb
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Thu Sep 22 10:10:14 2016 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Sun Oct 2 17:45:14 2016 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Core/Util/Fst/Builder.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6a61cfbc/src/Lucene.Net.Core/Util/Fst/Builder.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Core/Util/Fst/Builder.cs b/src/Lucene.Net.Core/Util/Fst/Builder.cs
index 11cce9f..b94acc1 100644
--- a/src/Lucene.Net.Core/Util/Fst/Builder.cs
+++ b/src/Lucene.Net.Core/Util/Fst/Builder.cs
@@ -391,7 +391,8 @@ namespace Lucene.Net.Util.Fst
                 output = NO_OUTPUT;
             }
 
-            // LUCENENET: Commented this because it makes testing difficult in Visual Studio.
+            // LUCENENET TODO: Commented this because it makes testing difficult in Visual Studio.
+            // However, should investigate why this line is failing.
             //Debug.Assert(LastInput.Length == 0 || input.CompareTo(LastInput) >= 0, "inputs are added out of order lastInput=" + LastInput + " vs input=" + input);
             Debug.Assert(ValidOutput(output));