commit | c37d81c43ac7124ae765f6a4471fee53237dc337 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Wed Mar 06 21:37:21 2024 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Mar 06 21:37:21 2024 +0000 |
tree | 1a1e3dee567b22b6dc7186258175209b07e986df | |
parent | 8339dab4bf9bf884646306c7f590c7c7daeed412 [diff] | |
parent | abc8e572d108a0f14ed6ae4c4fbc9c3b84b29ba4 [diff] |
Merge "Add param javadocs" into main
diff --git a/location/java/android/location/provider/ForwardGeocodeRequest.java b/location/java/android/location/provider/ForwardGeocodeRequest.java index 8f227b1..89d14fb 100644 --- a/location/java/android/location/provider/ForwardGeocodeRequest.java +++ b/location/java/android/location/provider/ForwardGeocodeRequest.java
@@ -260,7 +260,11 @@ mCallingAttributionTag = null; } - /** Sets the attribution tag. */ + /** + * Sets the attribution tag. + * + * @param attributionTag The attribution tag to associate with the request. + */ @NonNull public Builder setCallingAttributionTag(@NonNull String attributionTag) { mCallingAttributionTag = attributionTag;
diff --git a/location/java/android/location/provider/ReverseGeocodeRequest.java b/location/java/android/location/provider/ReverseGeocodeRequest.java index 57c9047..2107707 100644 --- a/location/java/android/location/provider/ReverseGeocodeRequest.java +++ b/location/java/android/location/provider/ReverseGeocodeRequest.java
@@ -207,7 +207,11 @@ mCallingAttributionTag = null; } - /** Sets the attribution tag. */ + /** + * Sets the attribution tag. + * + * @param attributionTag The attribution tag to associate with the request. + */ @NonNull public Builder setCallingAttributionTag(@NonNull String attributionTag) { mCallingAttributionTag = attributionTag;