@@ -40,16 +40,12 @@ public Filter()
40
40
/// </summary>
41
41
public object Since { get ; set ; }
42
42
43
-
44
- /// <summary>
43
+ /// <summary>
45
44
/// Return a parsed list of Since objects.
46
45
/// </summary>
47
- public IList < object > SinceList
46
+ internal IList < object > SinceList
48
47
{
49
- get
50
- {
51
- return sinceList ?? ( sinceList = ToList ( Since ) ) ;
52
- }
48
+ get { return sinceList ?? ( sinceList = ToList ( Since ) ) ; }
53
49
}
54
50
55
51
/// <summary>
@@ -70,12 +66,9 @@ public IList<object> SinceList
70
66
/// <summary>
71
67
/// Return a parsed list of Until objects.
72
68
/// </summary>
73
- public IList < object > UntilList
69
+ internal IList < object > UntilList
74
70
{
75
- get
76
- {
77
- return untilList ?? ( untilList = ToList ( Until ) ) ;
78
- }
71
+ get { return untilList ?? ( untilList = ToList ( Until ) ) ; }
79
72
}
80
73
81
74
/// <summary>
@@ -93,12 +86,12 @@ static IList<object> ToList(object obj)
93
86
}
94
87
95
88
var types = new [ ]
96
- {
97
- typeof ( string ) , typeof ( ObjectId ) ,
98
- typeof ( Commit ) , typeof ( TagAnnotation ) ,
99
- typeof ( Tag ) , typeof ( Branch ) , typeof ( DetachedHead ) ,
100
- typeof ( Reference ) , typeof ( DirectReference ) , typeof ( SymbolicReference )
101
- } ;
89
+ {
90
+ typeof ( string ) , typeof ( ObjectId ) ,
91
+ typeof ( Commit ) , typeof ( TagAnnotation ) ,
92
+ typeof ( Tag ) , typeof ( Branch ) , typeof ( DetachedHead ) ,
93
+ typeof ( Reference ) , typeof ( DirectReference ) , typeof ( SymbolicReference )
94
+ } ;
102
95
103
96
if ( types . Contains ( obj . GetType ( ) ) )
104
97
{
0 commit comments