From 8b285ddeddc30f1fb6f823a99546a863566ce124 Mon Sep 17 00:00:00 2001 From: aanchal Date: Sat, 17 Dec 2022 12:12:16 +0530 Subject: [PATCH] test: removed empty methods (cherry picked from commit dd322b6240c247c9c3f95f6fc2d7dfafb020bc68) --- .../projects/lib/src/lib/lib.component.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/angular_devkit/build_angular/test/hello-world-lib/projects/lib/src/lib/lib.component.ts b/packages/angular_devkit/build_angular/test/hello-world-lib/projects/lib/src/lib/lib.component.ts index 345514700ee8..564013ef0ce7 100644 --- a/packages/angular_devkit/build_angular/test/hello-world-lib/projects/lib/src/lib/lib.component.ts +++ b/packages/angular_devkit/build_angular/test/hello-world-lib/projects/lib/src/lib/lib.component.ts @@ -6,7 +6,7 @@ * found in the LICENSE file at https://angular.io/license */ -import { Component, OnInit } from '@angular/core'; +import { Component } from '@angular/core'; @Component({ selector: 'lib', @@ -17,11 +17,6 @@ import { Component, OnInit } from '@angular/core'; `, styles: [] }) -export class LibComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } +export class LibComponent { }