Merge "[SP25] Rename functions that add Entry conditionally" am: 338e4c0608 am: f17247045d

Change-Id: I59d965fa3a67be4994fe19a2f91e30d2ef114f81
This commit is contained in:
Junyu Lai
2020-03-18 04:02:41 +00:00
committed by Automerger Merge Worker

View File

@@ -721,7 +721,7 @@ public final class NetworkStats implements Parcelable {
* @param entry the {@link Entry} to add. * @param entry the {@link Entry} to add.
* @return a new constructed {@link NetworkStats} object that contains the result. * @return a new constructed {@link NetworkStats} object that contains the result.
*/ */
public @NonNull NetworkStats addValues(@NonNull Entry entry) { public @NonNull NetworkStats addEntry(@NonNull Entry entry) {
return this.clone().combineValues(entry); return this.clone().combineValues(entry);
} }