Bug 1331626 - remove unnecessary import from css-logic.js; r?jdescottes draft
authorTom Tromey <tom@tromey.com>
Tue, 17 Jan 2017 07:37:12 -0700
changeset 462475 439518fb4b54dfd130fef8488ab0d871ab260f46
parent 462474 74790f4d30de03105799064332f44d045e40723e
child 542404 e2781dea2a7b3641b97c14670592f22e092d37df
push id41763
push userbmo:ttromey@mozilla.com
push dateTue, 17 Jan 2017 14:39:59 +0000
reviewersjdescottes
bugs1331626
milestone53.0a1
Bug 1331626 - remove unnecessary import from css-logic.js; r?jdescottes MozReview-Commit-ID: Br3JJiR0IOd
devtools/server/css-logic.js
--- a/devtools/server/css-logic.js
+++ b/devtools/server/css-logic.js
@@ -29,18 +29,16 @@
 
 "use strict";
 
 const { Cc, Ci, Cu } = require("chrome");
 const DevToolsUtils = require("devtools/shared/DevToolsUtils");
 const nodeConstants = require("devtools/shared/dom-node-constants");
 const {l10n, isContentStylesheet, shortSource, FILTER, STATUS} = require("devtools/shared/inspector/css-logic");
 
-loader.lazyRequireGetter(this, "CSSLexer", "devtools/shared/css/lexer");
-
 /**
  * @param {function} isInherited A function that determines if the CSS property
  *                   is inherited.
  */
 function CssLogic(isInherited) {
   // The cache of examined CSS properties.
   this._isInherited = isInherited;
   this._propertyInfos = {};