diff options
| author | 2021-12-31 00:13:30 +0000 | |
|---|---|---|
| committer | 2021-12-31 00:15:50 +0000 | |
| commit | 35ecc5886c932584405462813ec4f49e91ce29e9 (patch) | |
| tree | 1f5e6c92fd7ced40255510c8698134a898030d42 | |
| parent | 8bc5344f95ee3392700442c1aa613c5e848dd5c7 (diff) | |
Fix typo in Javadoc.
A missing end brace was causing Javadoc to fail to parse one of the links.
Change-Id: I8e4ca3721d7d08b7094d142fef394f06a223428e
| -rw-r--r-- | apex/jobscheduler/framework/java/android/app/job/JobService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/jobscheduler/framework/java/android/app/job/JobService.java b/apex/jobscheduler/framework/java/android/app/job/JobService.java index c251529ae0b1..e5b07429a5c6 100644 --- a/apex/jobscheduler/framework/java/android/app/job/JobService.java +++ b/apex/jobscheduler/framework/java/android/app/job/JobService.java @@ -125,7 +125,7 @@ public abstract class JobService extends Service { * will not be invoked. * * @param params Parameters specifying info about this job, including the optional - * extras configured with {@link JobInfo.Builder#setExtras(android.os.PersistableBundle). + * extras configured with {@link JobInfo.Builder#setExtras(android.os.PersistableBundle)}. * This object serves to identify this specific running job instance when calling * {@link #jobFinished(JobParameters, boolean)}. * @return {@code true} if your service will continue running, using a separate thread |