From f767eb4aa92dd6b4a864ed4e46dba63f75e41338 Mon Sep 17 00:00:00 2001 From: Nick Cook Date: Thu, 18 Jul 2019 22:27:08 +0000 Subject: docs: Fix outdated sample code in Context#getExternalFilesDir. Test: make ds-docs Bug: 129290716 Change-Id: I0b1c1d9222c96c6bb2777f58d273546c81d77eb2 --- .../src/com/example/android/apis/content/ExternalStorage.java | 9 ++------- 1 file 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) -- cgit v1.2.3