4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-05-29 02:20:29 +08:00

Put trailing / into getRootPaths() to remain consistent with BBW

This commit is contained in:
macdonst 2010-11-26 00:40:18 +08:00
parent 50b435c4d1
commit 6e572f05e4

@ -265,7 +265,8 @@ public class DirectoryManager {
*/
protected static JSONArray getRootPaths() {
JSONArray retVal = new JSONArray();
retVal.put(Environment.getExternalStorageDirectory().getAbsolutePath());
String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/";
retVal.put(path);
return retVal;
}