diff --git a/chrome/content/zotero/xpcom/style.js b/chrome/content/zotero/xpcom/style.js index 7b5e496987..2ce7886342 100644 --- a/chrome/content/zotero/xpcom/style.js +++ b/chrome/content/zotero/xpcom/style.js @@ -768,9 +768,6 @@ Zotero.Style.prototype.getCiteProc = function (locale, format, automaticJournalA let updateXSLT = new DOMParser() .parseFromString(xsl, "application/xml"); - // XSLTProcessor is no longer available in XPCOM, so get from hidden window - let XSLTProcessor = Cc["@mozilla.org/appshell/appShellService;1"] - .getService(Ci.nsIAppShellService).hiddenDOMWindow.XSLTProcessor; // load XSLT file into XSLTProcessor Zotero.Styles.xsltProcessor = new XSLTProcessor(); Zotero.Styles.xsltProcessor.importStylesheet(updateXSLT);