Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vauvenal5/SparkleShare-Android
Browse files Browse the repository at this point in the history
  • Loading branch information
richy committed Feb 22, 2013
2 parents 57b42ac + 7c6c49a commit 495905e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/org/sparkleshare/android/utils/ExternalDirectory.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ public static String getExternalRootDirectory() {
}
}

public static void createDirectory(String url){
String path = URLPathDecoder.decode(url);
path = ExternalDirectory.getExternalRootDirectory() + path;
public static void createDirectory(String path){
File extDir = new File(path);

if(!extDir.exists()){
Expand Down

0 comments on commit 495905e

Please sign in to comment.