cosmetic space removal. Bug 189036, r=caillon, sr=jag

This commit is contained in:
bzbarsky%mit.edu 2003-01-15 00:11:27 +00:00
parent 54f5f9969b
commit 1004a15b63

View File

@ -100,7 +100,10 @@ HandlerOverride.prototype = {
var currentExtension = extensionTargets.getNext();
if (currentExtension) {
currentExtension = currentExtension.QueryInterface(Components.interfaces.nsIRDFLiteral);
extString += currentExtension.Value.toLowerCase() + " ";
if (extString != "") {
extString += " ";
}
extString += currentExtension.Value.toLowerCase();
}
}
}