File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/dart/lib/src/network Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ class QueryBuilder<T extends ParseObject> {
301
301
// Add a constraint to the query that requires a particular key's value matches a value for a key in the results of another ParseQuery.
302
302
// ignore: always_specify_types
303
303
void whereMatchesKeyInQuery (
304
- String column, String keyInQuery, QueryBuilder < T > query) {
304
+ String column, String keyInQuery, QueryBuilder query) {
305
305
if (query.queries.isEmpty) {
306
306
throw ArgumentError ('query conditions is required' );
307
307
}
@@ -322,7 +322,7 @@ class QueryBuilder<T extends ParseObject> {
322
322
// Add a constraint to the query that requires a particular key's value does not match any value for a key in the results of another ParseQuery
323
323
// ignore: always_specify_types
324
324
void whereDoesNotMatchKeyInQuery (
325
- String column, String keyInQuery, QueryBuilder < T > query) {
325
+ String column, String keyInQuery, QueryBuilder query) {
326
326
if (query.queries.isEmpty) {
327
327
throw ArgumentError ('query conditions is required' );
328
328
}
You can’t perform that action at this time.
0 commit comments