Bug 1476135 - Remove unused FileUtils.jsm import from layout/tools/reftest/bootstrap.js draft
authorBharat Raghunathan <bharatraghunthan9767@gmail.com>
Wed, 18 Jul 2018 22:22:33 +0530
changeset 819787 06c0ea6900561af1edc1a1e486a319b7883bff89
parent 819645 8dab948a10f073a46f13f55f94d1f6514c7360ac
push id116669
push userbmo:bharatraghunthan9767@gmail.com
push dateWed, 18 Jul 2018 16:53:08 +0000
bugs1476135
milestone63.0a1
Bug 1476135 - Remove unused FileUtils.jsm import from layout/tools/reftest/bootstrap.js MozReview-Commit-ID: HbvvS4xY8TN
layout/tools/reftest/bootstrap.js
--- a/layout/tools/reftest/bootstrap.js
+++ b/layout/tools/reftest/bootstrap.js
@@ -1,15 +1,14 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
 const Cm = Components.manager;
 
-ChromeUtils.import("resource://gre/modules/FileUtils.jsm");
 ChromeUtils.import("resource://gre/modules/Services.jsm");
 
 function processTerminated() {
   return new Promise(resolve => {
     Services.obs.addObserver(function observe(subject, topic) {
       if (topic == "ipc:content-shutdown") {
         Services.obs.removeObserver(observe, topic);
         resolve();