зеркало из https://github.com/mozilla/pjs.git
Don't use a reserved word as a variable name; r=itslikeatypo, a=testonlychange
This commit is contained in:
Родитель
c50e0986e6
Коммит
acc26f5eb6
|
@ -208,9 +208,9 @@ function serverShutdown(metadata, response)
|
|||
*/
|
||||
function dirIter(dir)
|
||||
{
|
||||
var enum = dir.directoryEntries;
|
||||
while (enum.hasMoreElements()) {
|
||||
var file = enum.getNext();
|
||||
var en = dir.directoryEntries;
|
||||
while (en.hasMoreElements()) {
|
||||
var file = en.getNext();
|
||||
yield file.QueryInterface(Ci.nsILocalFile);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче