fix one more strict mode warning

This commit is contained in:
Simon Kornblith 2007-03-19 21:32:52 +00:00
parent 0d1d81239c
commit ccfa5abba9

View File

@ -1623,7 +1623,7 @@ Zotero.Translate.prototype._importDefuseBOM = function() {
}
// if we know what kind of BOM it has, generate an input stream
intlStream = Components.classes["@mozilla.org/intl/converter-input-stream;1"]
var intlStream = Components.classes["@mozilla.org/intl/converter-input-stream;1"]
.createInstance(Components.interfaces.nsIConverterInputStream);
intlStream.init(this._inputStream, this._hasBOM, 65535,
Components.interfaces.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);