Lucene.Net.Core.Store.IndexInput: Added TODO about changing property to method
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6281c039 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6281c039 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6281c039 Branch: refs/heads/api-work Commit: 6281c039496e62cd5673734069e15b4db0053bdc Parents: be06c46 Author: Shad Storhaug <[email protected]> Authored: Fri Mar 17 02:43:36 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Fri Mar 17 02:43:36 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Core/Store/IndexInput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6281c039/src/Lucene.Net.Core/Store/IndexInput.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Core/Store/IndexInput.cs b/src/Lucene.Net.Core/Store/IndexInput.cs index 1406653..2c10e40 100644 --- a/src/Lucene.Net.Core/Store/IndexInput.cs +++ b/src/Lucene.Net.Core/Store/IndexInput.cs @@ -60,7 +60,7 @@ namespace Lucene.Net.Store /// Returns the current position in this file, where the next read will /// occur. </summary> /// <seealso cref= #seek(long) </seealso> - public abstract long FilePointer { get; } + public abstract long FilePointer { get; } // LUCENENET TODO: Change to GetFilePointer() (makes conversion, throws exception) /// <summary> /// Sets current position in this file, where the next read will occur. </summary>
