Comment 263 for bug 52667

Revision history for this message
In , Mkmelin+mozilla (mkmelin+mozilla) wrote :

(In reply to comment #208)
> One thing I was unsure about was the correct indentation for the following two
> statements:
> let hdrParser = Components.classes[
> "@mozilla.org/messenger/headerparser;1"].getService(
> Components.interfaces.nsIMsgHeaderParser);

We usually do this (very common case)

let hdrParser = Components.classes["@mozilla.org/messenger/headerparser;1"]
                          .getService(Components.interfaces.nsIMsgHeaderParser);