File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ export abstract class Field {
280
280
* For now, parsing of `group by` lines is currently done in {@link FilterParser.parseGrouper()}.
281
281
* Later, this will probably be moved to the {@link Field} classes.
282
282
*/
283
- public createGrouper ( reverse : boolean = false ) : Grouper {
283
+ public createGrouper ( reverse : boolean ) : Grouper {
284
284
return new Grouper ( this . fieldNameSingular ( ) , this . grouper ( ) , reverse ) ;
285
285
}
286
286
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export abstract class MultiTextField extends TextField {
63
63
/**
64
64
* This overloads {@link Field.createGrouper} to put a plural field name in the {@link Grouper.property}.
65
65
*/
66
- public createGrouper ( reverse : boolean = false ) : Grouper {
66
+ public createGrouper ( reverse : boolean ) : Grouper {
67
67
return new Grouper ( this . fieldNamePlural ( ) , this . grouper ( ) , reverse ) ;
68
68
}
69
69
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ export class Grouper {
36
36
37
37
public readonly reverse : boolean ;
38
38
39
- constructor ( property : string , grouper : GrouperFunction , reverse : boolean = false ) {
39
+ constructor ( property : string , grouper : GrouperFunction , reverse : boolean ) {
40
40
this . property = property ;
41
41
this . grouper = grouper ;
42
42
this . reverse = reverse ;
You can’t perform that action at this time.
0 commit comments