Bug 1243577, part 1 - Delete trailing whitespace in xpcshell-head-parent-process.js. r=khuey

This commit is contained in:
Andrew McCreight 2016-02-18 09:09:28 -08:00
Родитель 2ddda3ac74
Коммит 6bb770cba7
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -18,11 +18,11 @@ function is(a, b, msg) {
}
function ok(cond, msg) {
do_check_true(!!cond, Components.stack.caller);
do_check_true(!!cond, Components.stack.caller);
}
function isnot(a, b, msg) {
do_check_neq(a, b, Components.stack.caller);
do_check_neq(a, b, Components.stack.caller);
}
function executeSoon(fun) {
@ -150,12 +150,12 @@ function compareKeys(k1, k2) {
if (!(k2 instanceof Array) ||
k1.length != k2.length)
return false;
for (let i = 0; i < k1.length; ++i) {
if (!compareKeys(k1[i], k2[i]))
return false;
}
return true;
}