From 384e155ba1ea56afb6b4d587666d7af873e4ad77 Mon Sep 17 00:00:00 2001 From: Andrew Solovay Date: Wed, 22 Feb 2023 01:38:58 +0000 Subject: [PATCH] docs: Removing TODO from doc comment The TODO in the doc comment was ending up in the published docs. Moved it to a separate, non-doc comment (// instead of /** */) so the doc engine will ignore it. NO_TEST , fixes a doc bug (no code edits). Change-Id: I98e1f4f2b5ff7a5879bd90ca52e5635b350d36ab Fixes: 270126340 Test: [go/abtd docs build (verified the doc in the output] --- apex/jobscheduler/framework/java/android/app/job/JobInfo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java index 11c13c413ced7..f6c18d62ff1eb 100644 --- a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java +++ b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java @@ -1447,7 +1447,6 @@ public class JobInfo implements Parcelable { * reasonable estimates should use the sentinel value * {@link JobInfo#NETWORK_BYTES_UNKNOWN}. * - * TODO(255371817): update documentation to reflect how this data will be used * Note that the system may choose to delay jobs with large network * usage estimates when the device has a poor network connection, in * order to save battery and possible network costs. @@ -1478,6 +1477,7 @@ public class JobInfo implements Parcelable { * @see JobInfo#getEstimatedNetworkUploadBytes() * @see JobWorkItem#JobWorkItem(android.content.Intent, long, long) */ + // TODO(b/255371817): update documentation to reflect how this data will be used public Builder setEstimatedNetworkBytes(@BytesLong long downloadBytes, @BytesLong long uploadBytes) { mNetworkDownloadBytes = downloadBytes;