diff options
author | Eino-Ville Talvala <etalvala@google.com> | 2014-09-03 20:53:33 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-09-03 20:53:34 +0000 |
commit | b10e39e7166e2c4854a3adb2c2d8fa9c72d816bf (patch) | |
tree | a31df0400653856c3705401175545a2f715d7df3 | |
parent | 0c76727916784eb3a72ea6d3e168a9d460507aac (diff) | |
parent | 93b47603bfa11d95ab3d87e5dbc55f128244ff81 (diff) | |
download | frameworks_base-b10e39e7166e2c4854a3adb2c2d8fa9c72d816bf.zip frameworks_base-b10e39e7166e2c4854a3adb2c2d8fa9c72d816bf.tar.gz frameworks_base-b10e39e7166e2c4854a3adb2c2d8fa9c72d816bf.tar.bz2 |
Merge "JobScheduler: Fix doc build break" into lmp-dev
-rw-r--r-- | core/java/android/app/job/JobScheduler.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/app/job/JobScheduler.java b/core/java/android/app/job/JobScheduler.java index 5edc2a0..89efeb2 100644 --- a/core/java/android/app/job/JobScheduler.java +++ b/core/java/android/app/job/JobScheduler.java @@ -29,7 +29,8 @@ import android.content.Context; * JobScheduler with {@link #schedule(JobInfo)}. When the criteria declared are met, the * system will execute this job on your application's {@link android.app.job.JobService}. * You identify which JobService is meant to execute the logic for your job when you create the - * JobInfo with {@link android.app.job.JobInfo.Builder#Builder(int, android.content.ComponentName)}. + * JobInfo with + * {@link android.app.job.JobInfo.Builder#JobInfo.Builder(int,android.content.ComponentName)}. * </p> * <p> * The framework will be intelligent about when you receive your callbacks, and attempt to batch |