summaryrefslogtreecommitdiffstats
path: root/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java')
-rw-r--r--samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java b/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
index 534a1c822..b76d1b42a 100644
--- a/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
+++ b/samples/ApiDemos/src/com/example/android/apis/content/ExternalStorage.java
@@ -339,19 +339,14 @@ public class ExternalStorage extends Activity {
// Get path for the file on external storage. If external
// storage is not currently mounted this will fail.
File file = new File(getExternalFilesDir(null), "DemoFile.jpg");
- if (file != null) {
- file.delete();
- }
+ file.delete();
}
boolean hasExternalStoragePrivateFile() {
// Get path for the file on external storage. If external
// storage is not currently mounted this will fail.
File file = new File(getExternalFilesDir(null), "DemoFile.jpg");
- if (file != null) {
- return file.exists();
- }
- return false;
+ return file.exists();
}
// END_INCLUDE(private_file)