提交 35eadbcf 编写于 作者: K Kohsuke Kawaguchi

1.LAZYLOAD -> 1.485

上级 ae7ec8e8
......@@ -527,7 +527,7 @@ public abstract class Job<JobT extends Job<JobT, RunT>, RunT extends Run<JobT, R
/**
* Gets the read-only view of the recent builds.
*
* @since 1.LAZYLOAD
* @since 1.485
*/
@Exported(name="builds")
public RunList<RunT> getNewBuilds() {
......
......@@ -68,7 +68,7 @@ public final class RunMap<R extends Run<?,R>> extends AbstractLazyLoadRunMap<R>
/**
* @deprecated as of 1.LAZYLOAD
* @deprecated as of 1.485
* Use {@link #RunMap(File, Constructor)}.
*/
public RunMap() {
......@@ -143,7 +143,7 @@ public final class RunMap<R extends Run<?,R>> extends AbstractLazyLoadRunMap<R>
}
/**
* @deprecated as of 1.LAZYLOAD
* @deprecated as of 1.485
* Use {@link ReverseComparator}
*/
public static final Comparator<Comparable> COMPARATOR = new Comparator<Comparable>() {
......@@ -238,7 +238,7 @@ public final class RunMap<R extends Run<?,R>> extends AbstractLazyLoadRunMap<R>
* Job that owns this map.
* @param cons
* Used to create new instance of {@link Run}.
* @deprecated as of 1.LAZYLOAD
* @deprecated as of 1.485
* Use {@link #RunMap(File, Constructor)}
*/
public void load(Job job, Constructor<R> cons) {
......
......@@ -334,7 +334,7 @@ public class Iterators {
* Returns the elements in the base iterator until it hits any element that doesn't satisfy the filter.
* Then the rest of the elements in the base iterator gets ignored.
*
* @since 1.LAZYLOAD
* @since 1.485
*/
public static <T> Iterator<T> limit(final Iterator<? extends T> base, final CountingPredicate<? super T> filter) {
return new Iterator<T>() {
......
......@@ -103,7 +103,7 @@ public class RunList<R extends Run> extends AbstractList<R> {
}
/**
* @deprecated as of 1.LAZYLOAD
* @deprecated as of 1.485
* {@link RunList}, despite its name, should be really used as {@link Iterable}, not as {@link List}.
*/
@Override
......@@ -120,7 +120,7 @@ public class RunList<R extends Run> extends AbstractList<R> {
}
/**
* @deprecated as of 1.LAZYLOAD
* @deprecated as of 1.485
* {@link RunList}, despite its name, should be really used as {@link Iterable}, not as {@link List}.
*/
@Override
......
......@@ -95,7 +95,7 @@ import static jenkins.model.lazy.Boundary.*;
* updating {@link Index#byNumber} and {@link Index#byId}.
*
* @author Kohsuke Kawaguchi
* @since 1.LAZYLOAD
* @since 1.485
*/
public abstract class AbstractLazyLoadRunMap<R> extends AbstractMap<Integer,R> implements SortedMap<Integer,R> {
/**
......
......@@ -15,7 +15,7 @@ import java.lang.ref.SoftReference;
* and find things in it.
*
* @author Kohsuke Kawaguchi
* @since 1.LAZYLOAD
* @since 1.485
*/
public final class BuildReference<R> extends SoftReference<R> {
final String id;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册