Lucene.Net.TestFramework.Util.TestUtil: fixed some variable names
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/b047f650 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/b047f650 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/b047f650 Branch: refs/heads/api-work Commit: b047f65063acfa190d493f04da2ae6a634d1c6a0 Parents: a5db387 Author: Shad Storhaug <[email protected]> Authored: Sun Mar 19 22:08:21 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Mar 19 22:41:08 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.TestFramework/Util/TestUtil.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/b047f650/src/Lucene.Net.TestFramework/Util/TestUtil.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.TestFramework/Util/TestUtil.cs b/src/Lucene.Net.TestFramework/Util/TestUtil.cs index a36d17c..e7517ff 100644 --- a/src/Lucene.Net.TestFramework/Util/TestUtil.cs +++ b/src/Lucene.Net.TestFramework/Util/TestUtil.cs @@ -828,16 +828,16 @@ namespace Lucene.Net.Util private class Lucene46CodecAnonymousInnerClassHelper : Lucene46Codec { - private PostingsFormat Format; + private PostingsFormat format; public Lucene46CodecAnonymousInnerClassHelper(PostingsFormat format) { - this.Format = format; + this.format = format; } public override PostingsFormat GetPostingsFormatForField(string field) { - return Format; + return format; } } @@ -860,16 +860,16 @@ namespace Lucene.Net.Util private class Lucene46CodecAnonymousInnerClassHelper2 : Lucene46Codec { - private DocValuesFormat Format; + private DocValuesFormat format; public Lucene46CodecAnonymousInnerClassHelper2(DocValuesFormat format) { - this.Format = format; + this.format = format; } public override DocValuesFormat GetDocValuesFormatForField(string field) { - return Format; + return format; } }
