auth-guard-modal : removed unused code 67/60267/2
authorArundathi Patil <arundpil@in.ibm.com>
Mon, 13 Aug 2018 09:52:03 +0000 (15:22 +0530)
committerTakamune Cho <tc012c@att.com>
Tue, 14 Aug 2018 18:08:49 +0000 (18:08 +0000)
The NgbActiveModal of ng-bootstarp is injected into auth-guard-modal,
but is never used. hence removing it.

Issue-ID: APPC-1149
Change-Id: Ie1ba8b11ffb334105bbc6a5a2575fe1507d276e5
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
src/app/vnfs/auth-guard-modal/auth-guard-modal.ts

index 9fadbde..ec03978 100644 (file)
@@ -2,6 +2,8 @@
 ============LICENSE_START==========================================
 ===================================================================
 Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+
+Copyright (C) 2018 IBM.
 ===================================================================
 
 Unless otherwise specified, all software contained herein is licensed
@@ -21,7 +23,6 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
 ============LICENSE_END============================================ */
 
 import {Component, OnInit} from '@angular/core';
-import {NgbActiveModal} from '@ng-bootstrap/ng-bootstrap';
 
 @Component({
     selector: 'app-auth-guard-modal',
@@ -30,7 +31,7 @@ import {NgbActiveModal} from '@ng-bootstrap/ng-bootstrap';
 })
 export class AuthGuardModalComponent implements OnInit {
 
-    constructor(public activeModal: NgbActiveModal) {
+    constructor() {
     }
 
     ngOnInit() {