Fixed some javadoc bugs.

This commit is contained in:
Michael Bayne
2010-02-25 06:52:07 +00:00
parent b5e7ba8642
commit aa4ac73e5d
@@ -202,7 +202,7 @@ public abstract class DepotRepository
} }
/** /**
* A varargs version of {@link #findAll(Class,Collection)}. * A varargs version of {@link #findAll(Class,Iterable)}.
* *
* @throws DatabaseException if any problem is encountered communicating with the database. * @throws DatabaseException if any problem is encountered communicating with the database.
*/ */
@@ -902,7 +902,7 @@ public abstract class DepotRepository
} }
/** /**
* Concise way to call {@link Sequence#map} to transform query results. * Concise way to transform query results.
*/ */
protected <F, T> Sequence<T> map (Collection<F> source, Function<? super F, ? extends T> func) protected <F, T> Sequence<T> map (Collection<F> source, Function<? super F, ? extends T> func)
{ {