From c848cb71727a9de5c8d2ce33ffcd77bf24b26274 Mon Sep 17 00:00:00 2001 From: Songchun Fan Date: Wed, 21 Jul 2021 17:07:32 -0700 Subject: [PATCH] [SettingsProvider] update API javadoc Address comments from API review BUG: 194183938 Test: N/A Change-Id: I3042be0671728d06bf1c7ae09baee538bb82fbe7 --- core/java/android/provider/DeviceConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index 880d03a98ffbf..ded598ad9e6dd 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -846,8 +846,8 @@ public final class DeviceConfig { /** * Delete a property with the provided name and value in the provided namespace * - * @param namespace The namespace containing the property to create or update. - * @param name The name of the property to create or update. + * @param namespace The namespace containing the property to delete. + * @param name The name of the property to delete. * @return True if the property was deleted or it did not exist in the first place. * False if the storage implementation throws errors. * @hide