From 9288158226df497547d9a0506125b227909dfaf3 Mon Sep 17 00:00:00 2001 From: Tim Kim Date: Thu, 13 Jun 2013 15:24:01 -0700 Subject: [PATCH] Made some functions in DirectoryManager public --- framework/src/org/apache/cordova/DirectoryManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/src/org/apache/cordova/DirectoryManager.java b/framework/src/org/apache/cordova/DirectoryManager.java index 0c86f0f8..89c66bce 100644 --- a/framework/src/org/apache/cordova/DirectoryManager.java +++ b/framework/src/org/apache/cordova/DirectoryManager.java @@ -40,7 +40,7 @@ public class DirectoryManager { * @param name The name of the file to check. * @return T=exists, F=not found */ - protected static boolean testFileExists(String name) { + public static boolean testFileExists(String name) { boolean status; // If SD card exists @@ -61,7 +61,7 @@ public class DirectoryManager { * * @return Size in KB or -1 if not available */ - protected static long getFreeDiskSpace(boolean checkInternal) { + public static long getFreeDiskSpace(boolean checkInternal) { String status = Environment.getExternalStorageState(); long freeSpace = 0; @@ -98,7 +98,7 @@ public class DirectoryManager { * * @return T=exists, F=not found */ - protected static boolean testSaveLocationExists() { + public static boolean testSaveLocationExists() { String sDCardStatus = Environment.getExternalStorageState(); boolean status;