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

This commit is contained in:
bzbarsky%mit.edu 2006-05-17 02:36:05 +00:00
Родитель 22f37f0224
Коммит f561a50e8c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -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();
}
}
}