summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Cook <nickcook@google.com>2019-08-19 18:14:37 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-08-19 18:14:37 -0700
commit458535f4029e75153956a6d43bd952ce673cd40e (patch)
tree64228ce1e504bcdf09b0b94dbad413640fe1ec57
parent0069865aae20a6b82bbd4b31d755421186985108 (diff)
parentcc4b685d3efcb73eba2977900af2734c2bfc6daf (diff)
downloaddevelopment-458535f4029e75153956a6d43bd952ce673cd40e.tar.gz
docs: Fix outdated sample code in Context#getExternalFilesDir. Test: make ds-docs am: f767eb4aa9
am: cc4b685d3e Change-Id: I183df0eaf62658dbf90c2e696144e1ef04e5b456
-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)