javadoc fixes

This commit is contained in:
Joakim Erdfelt 2015-12-18 14:21:10 -07:00
parent 4a07503a09
commit 71150a939c
2 changed files with 1 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class Loader
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** Load a class. /** Load a class.
* *
* @param loaderClass a similar class, belong in the same classloader of the desired class to load * @param loadClass a similar class, belong in the same classloader of the desired class to load
* @param name the name of the new class to load, using the same ClassLoader as the <code>loadClass</code> * @param name the name of the new class to load, using the same ClassLoader as the <code>loadClass</code>
* @return Class * @return Class
* @throws ClassNotFoundException if not able to find the class * @throws ClassNotFoundException if not able to find the class

View File

@ -47,7 +47,6 @@ public interface Promise<C>
* <p>Empty implementation of {@link Promise}</p> * <p>Empty implementation of {@link Promise}</p>
* *
* @param <C> the type of the context object * @param <C> the type of the context object
* @param <T> the type of the result
*/ */
public static class Adapter<C> implements Promise<C> public static class Adapter<C> implements Promise<C>
{ {