Bug 1312690: Remove now-useless .matches() call from tryInject. r=aswan

MozReview-Commit-ID: 9EVWJFSe1tU

--HG--
extra : rebase_source : 5fb8ba9579fbc3e58ed214bad18fffd055bf61ac
This commit is contained in:
Kris Maglione 2016-11-01 16:53:55 -07:00
Родитель d374c039ef
Коммит 46cb76edfa
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -214,11 +214,6 @@ Script.prototype = {
* the injection.
*/
tryInject(window, sandbox, shouldRun, when) {
if (!this.matches(window)) {
this.deferred.reject({message: "No matching window"});
return;
}
if (shouldRun("document_start")) {
let winUtils = window.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindowUtils);