Removed TODO about changing HasNext to a method, since it acts like a property anyway
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/e1d225b3 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/e1d225b3 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/e1d225b3 Branch: refs/heads/master Commit: e1d225b363e3bf832e71ff2152004d31c34386c6 Parents: 07c8801 Author: Shad Storhaug <[email protected]> Authored: Sat Jun 17 15:09:27 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sat Jun 17 15:37:28 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/e1d225b3/src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs b/src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs index 718daed..04e5df3 100644 --- a/src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs +++ b/src/Lucene.Net/Util/Packed/AbstractAppendingLongBuffer.cs @@ -190,7 +190,7 @@ namespace Lucene.Net.Util.Packed /// <summary> /// Whether or not there are remaining values. </summary> - public bool HasNext // LUCENENET TODO: API - Change to HasNext() method (makes calculation) + public bool HasNext { get { return pOff < currentCount; } }
