Skip to content

Commit 6406282

Browse files
author
Bart Koelman
committed
Tracked at #758
1 parent 4d64182 commit 6406282

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/JsonApiDotNetCore/QueryParameterServices/FilterService.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ private FilterQueryContext GetQueryContexts(FilterQuery query, string parameterN
7474
return queryContext;
7575
}
7676

77-
/// todo: this could be simplified a bunch
7877
private List<FilterQuery> GetFilterQueries(string parameterName, StringValues parameterValue)
7978
{
8079
// expected input = filter[id]=1
@@ -100,7 +99,6 @@ private List<FilterQuery> GetFilterQueries(string parameterName, StringValues pa
10099
return queries;
101100
}
102101

103-
/// todo: this could be simplified a bunch
104102
private (string operation, string value) ParseFilterOperation(string value)
105103
{
106104
if (value.Length < 3)
@@ -117,7 +115,6 @@ private List<FilterQuery> GetFilterQueries(string parameterName, StringValues pa
117115
return (operation, value);
118116
}
119117

120-
/// todo: this could be simplified a bunch
121118
private string GetFilterOperation(string value)
122119
{
123120
var values = value.Split(QueryConstants.COLON);

0 commit comments

Comments
 (0)