Fixing invalid javadoc

This commit is contained in:
Joakim Erdfelt 2013-10-10 07:31:56 -07:00
parent 3886cc2dc5
commit 646b4c929b
2 changed files with 3 additions and 3 deletions

View File

@ -58,14 +58,14 @@ public interface Container
/** /**
* Add an event listener. * Add an event listener.
* @see Container#addBean(Object), which also adds listeners if the bean is-a Listener * @see Container#addBean(Object)
* @param listener * @param listener
*/ */
public void addEventListener(Listener listener); public void addEventListener(Listener listener);
/** /**
* Remove an event listener. * Remove an event listener.
* @see Container#removeBean(Object), which also adds listeners if the bean is-a Listener * @see Container#removeBean(Object)
* @param listener * @param listener
*/ */
public void removeEventListener(Listener listener); public void removeEventListener(Listener listener);

View File

@ -91,7 +91,7 @@ public interface Logger
* Formats and logs at debug level. * Formats and logs at debug level.
* avoids autoboxing of integers * avoids autoboxing of integers
* @param msg the formatting string * @param msg the formatting string
* @param args the optional arguments * @param value long value
*/ */
public void debug(String msg, long value); public void debug(String msg, long value);