From 82b17ee1cb07377fb1a2ceac634ad0c3757180a6 Mon Sep 17 00:00:00 2001 From: Elliot Smith Date: Wed, 7 Apr 2010 17:28:33 +0100 Subject: [PATCH] Removed redundant arguments from Gio function call (no longer required) --- File.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/File.js b/File.js index e6e8da8..f0da9ff 100755 --- a/File.js +++ b/File.js @@ -87,7 +87,7 @@ var File = { var filesToCopy = File.recursiveListing(fromDir); var srcPath, destPath, src, dest; - for (index in filesToCopy) { + for (var index in filesToCopy) { srcPath = File.join(String(fromDir), filesToCopy[index]); destPath = File.join(String(toDir), filesToCopy[index]); @@ -112,11 +112,11 @@ var File = { // a bit of a hack for the fact that Gio.File.copy arguments // can be nulled, but not according to the GIR file - return src.copy(dest, Gio.FileCopyFlags.NONE, null, function(_a,_b,_c) {return true;}, true); + return src.copy(dest, Gio.FileCopyFlags.NONE); }, recursiveListing : function (dir) { - + function recursiveListingInternal(prefix, listing, dir) { var entries = File.list(dir); var next, fullPath; @@ -139,8 +139,8 @@ var File = { return listing; } - + return recursiveListingInternal('', [], dir); } -}; \ No newline at end of file +}; -- 2.39.2