Skip to content

Commit

Permalink
Fixing build errors by removing internal modifiers (closes apache#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
conniey committed Dec 6, 2016
1 parent 701b9ed commit e4ad1bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Lucene.Net.Tests/core/Search/JustCompileSearch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ public JustCompileFilteredDocIdSet(DocIdSet innerSet)
{
}

protected internal override bool Match(int docid)
protected override bool Match(int docid)
{
throw new System.NotSupportedException(UNSUPPORTED_MSG);
}
Expand Down
4 changes: 2 additions & 2 deletions src/Lucene.Net.Tests/core/Search/TestDocIdSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public FilteredDocIdSetAnonymousInnerClassHelper(TestDocIdSet outerInstance, Doc
this.OuterInstance = outerInstance;
}

protected internal override bool Match(int docid)
protected override bool Match(int docid)
{
return docid % 2 == 0; //validate only even docids
}
Expand Down Expand Up @@ -244,7 +244,7 @@ public FilteredDocIdSetAnonymousInnerClassHelper2(FilterAnonymousInnerClassHelpe
this.OuterInstance = outerInstance;
}

protected internal override bool Match(int docid)
protected override bool Match(int docid)
{
return true;
}
Expand Down

0 comments on commit e4ad1bd

Please sign in to comment.