GUI -- TopoView - Oblique - removed unreferenced ThemeService injection.
Change-Id: Ie993faeaeb62538f52b6289ec3e2af90282be70c
Showing
1 changed file
with
3 additions
and
4 deletions
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | 'use strict'; | 24 | 'use strict'; |
25 | 25 | ||
26 | // injected refs | 26 | // injected refs |
27 | - var $log, fs, sus, ts; | 27 | + var $log, fs, sus; |
28 | 28 | ||
29 | // api to topoForce | 29 | // api to topoForce |
30 | var api; | 30 | var api; |
... | @@ -217,13 +217,12 @@ | ... | @@ -217,13 +217,12 @@ |
217 | 217 | ||
218 | angular.module('ovTopo') | 218 | angular.module('ovTopo') |
219 | .factory('TopoObliqueService', | 219 | .factory('TopoObliqueService', |
220 | - ['$log', 'FnService', 'SvgUtilService', 'ThemeService', | 220 | + ['$log', 'FnService', 'SvgUtilService', |
221 | 221 | ||
222 | - function (_$log_, _fs_, _sus_, _ts_) { | 222 | + function (_$log_, _fs_, _sus_) { |
223 | $log = _$log_; | 223 | $log = _$log_; |
224 | fs = _fs_; | 224 | fs = _fs_; |
225 | sus = _sus_; | 225 | sus = _sus_; |
226 | - ts = _ts_; | ||
227 | 226 | ||
228 | function initOblique(_api_) { | 227 | function initOblique(_api_) { |
229 | api = _api_; | 228 | api = _api_; | ... | ... |
-
Please register or login to post a comment