File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -264,16 +264,6 @@ export abstract class Field {
264
264
return false ;
265
265
}
266
266
267
- /**
268
- * Parse a 'group by' line and return a {@link Grouper} object.
269
- *
270
- * Returns null line does not match this field or is invalid,
271
- * or this field does not support grouping.
272
- */
273
- public parseGroupLine ( line : string ) : Grouper | null {
274
- return this . createGrouperFromLine ( line ) ;
275
- }
276
-
277
267
/**
278
268
* Parse the line, and return either a {@link Grouper} object or null.
279
269
*
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ export function parseGrouper(line: string): Grouper | null {
101
101
// See if any of the fields can parse the line.
102
102
for ( const creator of fieldCreators ) {
103
103
const field = creator ( ) ;
104
- const grouper = field . parseGroupLine ( line ) ;
104
+ const grouper = field . createGrouperFromLine ( line ) ;
105
105
if ( grouper ) {
106
106
return grouper ;
107
107
}
You can’t perform that action at this time.
0 commit comments