LP1904036 ng lint continued
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / circ / patron / surveys.component.ts
index 94727dc..1739aae 100644 (file)
@@ -1,4 +1,4 @@
-import {Component, Input, OnInit, AfterViewInit, ViewChild} from '@angular/core';
+import {Component, Input, OnInit, ViewChild} from '@angular/core';
 import {Router, ActivatedRoute, ParamMap} from '@angular/router';
 import {from, empty, range} from 'rxjs';
 import {concatMap, tap, takeLast} from 'rxjs/operators';
@@ -16,7 +16,7 @@ import {PatronContextService} from './patron.service';
   templateUrl: 'surveys.component.html',
   selector: 'eg-patron-survey-responses'
 })
-export class PatronSurveyResponsesComponent implements OnInit, AfterViewInit {
+export class PatronSurveyResponsesComponent implements OnInit {
 
     @Input() patronId: number;
     surveys: IdlObject[] = [];
@@ -75,7 +75,4 @@ export class PatronSurveyResponsesComponent implements OnInit, AfterViewInit {
             }
         );
     }
-
-    ngAfterViewInit() {
-    }
 }