Lucene.Net.Codecs.Memory.DirectPostingsFormat.DirectField.DirectIntersectTermsEnum.State: removed TODOs about changing internal fields to properties
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/5524a918 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/5524a918 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/5524a918 Branch: refs/heads/api-work Commit: 5524a918e912648e1786cc743b708f205fe1163e Parents: 9fc749d Author: Shad Storhaug <[email protected]> Authored: Sun Jan 29 16:32:27 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Jan 29 17:10:25 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/5524a918/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs b/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs index 498596b..ff4a327 100644 --- a/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs +++ b/src/Lucene.Net.Codecs/Memory/DirectPostingsFormat.cs @@ -1199,12 +1199,12 @@ namespace Lucene.Net.Codecs.Memory this.outerInstance = outerInstance; } - internal int changeOrd; // LUCENENET TODO: Make Property - internal int state; // LUCENENET TODO: Make Property - internal Transition[] transitions; // LUCENENET TODO: Make Property - internal int transitionUpto; // LUCENENET TODO: Make Property - internal int transitionMax; // LUCENENET TODO: Make Property - internal int transitionMin; // LUCENENET TODO: Make Property + internal int changeOrd; + internal int state; + internal Transition[] transitions; + internal int transitionUpto; + internal int transitionMax; + internal int transitionMin; } private State[] states;
