diff --git a/core/java/android/provider/DeviceConfig.java b/core/java/android/provider/DeviceConfig.java index 2351c9353730c..abd8164086b0d 100644 --- a/core/java/android/provider/DeviceConfig.java +++ b/core/java/android/provider/DeviceConfig.java @@ -836,7 +836,8 @@ public final class DeviceConfig { * @param name The name of the property to create or update. * @param value The value to store for the property. * @param makeDefault Whether to make the new value the default one. - * @return True if the value was set, false if the storage implementation throws errors. + * @return {@code true} if the value was set, {@code false} if the storage implementation throws + * errors. * @hide * @see #resetToDefaults(int, String). */ @@ -860,7 +861,7 @@ public final class DeviceConfig { * * @param properties the complete set of properties to set for a specific namespace. * @throws BadConfigException if the provided properties are banned by RescueParty. - * @return True if the values were set, false otherwise. + * @return {@code true} if the values were set, {@code false} otherwise. * @hide */ @SystemApi @@ -876,8 +877,8 @@ public final class DeviceConfig { * * @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. + * @return {@code true} if the property was deleted or it did not exist in the first place. + * Return {@code false} if the storage implementation throws errors. * @hide */ @SystemApi