Skip to content

Commit 6108379

Browse files
committed
chore: remove space from empty blocks
Signed-off-by: Akshat Patel <[email protected]>
1 parent 957a6c2 commit 6108379

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/dialog/dialog.directive.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export class DialogDirective implements OnInit, OnDestroy, OnChanges {
143143
* Deprecated as of v5
144144
*/
145145
protected eventService: EventService
146-
) { }
146+
) {}
147147

148148
ngOnChanges(changes: SimpleChanges) {
149149
// set the config object (this can [and should!] be added to in child classes depending on what they need)
@@ -313,13 +313,13 @@ export class DialogDirective implements OnInit, OnDestroy, OnChanges {
313313
* Empty method for child classes to override and specify additional init steps.
314314
* Run after DialogDirective completes it's ngOnInit.
315315
*/
316-
protected onDialogInit() { }
316+
protected onDialogInit() {}
317317

318318
/**
319319
* Empty method for child to override and specify additional on changes steps.
320320
* run after DialogDirective completes it's ngOnChanges.
321321
*/
322-
protected onDialogChanges(_changes: SimpleChanges) { }
322+
protected onDialogChanges(_changes: SimpleChanges) {}
323323

324-
protected updateConfig() { }
324+
protected updateConfig() {}
325325
}

0 commit comments

Comments
 (0)