Skip to content

Commit 58a1fe5

Browse files
committed
fix(migrations): remove unnecessary method and import
1 parent 84af12f commit 58a1fe5

File tree

1 file changed

+0
-4
lines changed
  • projects/igniteui-angular/migrations/common

1 file changed

+0
-4
lines changed

projects/igniteui-angular/migrations/common/util.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { execSync } from 'child_process';
66
import {
77
Attribute,
88
Block,
9-
BlockGroup,
109
BlockParameter,
1110
Comment,
1211
Element,
@@ -284,9 +283,6 @@ class SerializerVisitor implements Visitor {
284283
return parameter.expression;
285284
}
286285

287-
// XXX: This **HAS** to be removed in the next major release of Angular (v17) as it will error out again
288-
public visitBlockGroup(_group: BlockGroup, _context: any) { }
289-
290286
private _visitAll(nodes: Node[], separator = '', prefix = ''): string {
291287
return nodes.length > 0 ? prefix + nodes.map(a => a.visit(this, null)).join(separator) : '';
292288
}

0 commit comments

Comments
 (0)