Fixing invalid javadoc
This commit is contained in:
parent
3886cc2dc5
commit
646b4c929b
|
@ -58,14 +58,14 @@ public interface Container
|
|||
|
||||
/**
|
||||
* Add an event listener.
|
||||
* @see Container#addBean(Object), which also adds listeners if the bean is-a Listener
|
||||
* @see Container#addBean(Object)
|
||||
* @param listener
|
||||
*/
|
||||
public void addEventListener(Listener 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
|
||||
*/
|
||||
public void removeEventListener(Listener listener);
|
||||
|
|
|
@ -91,7 +91,7 @@ public interface Logger
|
|||
* Formats and logs at debug level.
|
||||
* avoids autoboxing of integers
|
||||
* @param msg the formatting string
|
||||
* @param args the optional arguments
|
||||
* @param value long value
|
||||
*/
|
||||
public void debug(String msg, long value);
|
||||
|
||||
|
|
Loading…
Reference in New Issue