File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed
src/NHibernate.Search/Filter Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace NHibernate . Search . Filter
4
4
{
5
- using System . Collections ;
6
- using System . Collections . Generic ;
7
- using System . Text ;
8
-
9
- using Lucene . Net . Index ;
10
- using Lucene . Net . Search ;
11
-
12
- /// <summary>
13
- /// A filter that performs a Boolean AND on multiple filters.
14
- /// </summary>
15
- public class ChainedFilter : Filter
16
- {
5
+ using Lucene . Net . Index ;
6
+ using Lucene . Net . Search ;
7
+ using System . Collections . Generic ;
8
+ using System . Text ;
9
+
10
+ /// <summary>
11
+ /// A filter that performs a Boolean AND on multiple filters.
12
+ /// </summary>
13
+ public class ChainedFilter : Filter
14
+ {
17
15
private readonly List < Filter > chainedFilters = new List < Filter > ( ) ;
18
16
19
17
public void AddFilter ( Filter filter )
You can’t perform that action at this time.
0 commit comments