bug 360696 - Follow up fix.

This commit is contained in:
mattwillis%gmail.com 2006-11-14 21:16:14 +00:00
parent 8dd5d0caf2
commit e9b419409f

View File

@ -695,10 +695,7 @@ var gDataMigrator = {
localFile.append(".thunderbird");
}
}
if (localFile.exists()) {
return localFile;
}
return null;
return localFile.exists() ? localFile : null;
},
getSunbirdProfile: function gdm_getSB() {
@ -762,10 +759,7 @@ var gDataMigrator = {
break;
}
}
if (localFile.exists()) {
return localFile;
}
return null;
return localFile.exists() ? localFile : null;
}
};