New dashboard look & feel
[src/xds/xds-agent.git] / webapp / src / app / @core-xds / services / config.service.ts
@@ -4,7 +4,6 @@ import { Observable } from 'rxjs/Observable';
 import { BehaviorSubject } from 'rxjs/BehaviorSubject';
 
 import { AlertService, IAlert } from '../services/alert.service';
-import { UtilsService } from '../services/utils.service';
 
 export interface IConfig {
     language: string;
@@ -22,7 +21,6 @@ export class ConfigService {
     constructor(
         private cookie: CookieService,
         private alert: AlertService,
-        private utils: UtilsService,
     ) {
         this.load();
         this.confSubject = <BehaviorSubject<IConfig>>new BehaviorSubject(this.confStore);
@@ -59,4 +57,5 @@ export class ConfigService {
         this.confStore.projectsRootDir = p;
         this.save();
     }
+
 }