From 7cca51072b740e2bc3f772ba89c209308195fb3e Mon Sep 17 00:00:00 2001 From: aanchal Date: Fri, 16 Dec 2022 18:58:18 +0530 Subject: [PATCH] removed unused code --- .../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 { }