You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2013/03/21 23:02:37 UTC

[2/2] webworks commit: [CB-2646] removed mistaken modification to mkdir file access

[CB-2646] removed mistaken modification to mkdir file access


Project: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/commit/e50fcd5a
Tree: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/tree/e50fcd5a
Diff: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/diff/e50fcd5a

Branch: refs/heads/master
Commit: e50fcd5add827d28db02f401c7b14cdf2046f815
Parents: 3dba2ed
Author: lorinbeer <lo...@adobe.com>
Authored: Thu Mar 21 14:27:22 2013 -0700
Committer: lorinbeer <lo...@adobe.com>
Committed: Thu Mar 21 14:27:22 2013 -0700

----------------------------------------------------------------------
 .../ext/src/org/apache/cordova/util/FileUtils.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/e50fcd5a/framework/ext/src/org/apache/cordova/util/FileUtils.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/util/FileUtils.java b/framework/ext/src/org/apache/cordova/util/FileUtils.java
index 6ca1ffe..20ef492 100644
--- a/framework/ext/src/org/apache/cordova/util/FileUtils.java
+++ b/framework/ext/src/org/apache/cordova/util/FileUtils.java
@@ -228,7 +228,7 @@ public class FileUtils {
     public static void mkdir(String dirPath) throws IOException {
         FileConnection fconn = null;
         try {
-            fconn = (FileConnection)Connector.open(dirPath, Connector.READ);
+            fconn = (FileConnection)Connector.open(dirPath);
             if (fconn.isDirectory()) {
                 // nothing to do
                 return;