Remove unused array

This commit is contained in:
Corey Johnson
2012-04-04 08:44:36 -07:00
parent 6dc4d9bb05
commit 8667628623

View File

@@ -90,7 +90,7 @@ bool NativeHandler::Execute(const CefString& name,
bool recursive = arguments[1]->GetBoolValue();
NSFileManager *fm = [NSFileManager defaultManager];
NSArray *relativePaths = [NSArray array];
NSArray *relativePaths = nil;
NSError *error = nil;
if (recursive) {
@@ -140,7 +140,7 @@ bool NativeHandler::Execute(const CefString& name,
bool recursive = arguments[1]->GetBoolValue();
NSFileManager *fm = [NSFileManager defaultManager];
NSArray *relativePaths = [NSArray array];
NSArray *relativePaths = nil;
NSError *error = nil;
if (recursive) {