[Cherbot-commit] SF.net SVN: cherbot: [95] trunk/src/net/sf/cherbot/redel/PatternDelegator. java
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-06-24 18:32:29
|
Revision: 95
http://svn.sourceforge.net/cherbot/?rev=95&view=rev
Author: christianhujer
Date: 2007-06-24 11:32:26 -0700 (Sun, 24 Jun 2007)
Log Message:
-----------
Added missing @NotNull annotations for performInvocation() parameters.
Modified Paths:
--------------
trunk/src/net/sf/cherbot/redel/PatternDelegator.java
Modified: trunk/src/net/sf/cherbot/redel/PatternDelegator.java
===================================================================
--- trunk/src/net/sf/cherbot/redel/PatternDelegator.java 2007-06-24 17:36:12 UTC (rev 94)
+++ trunk/src/net/sf/cherbot/redel/PatternDelegator.java 2007-06-24 18:32:26 UTC (rev 95)
@@ -73,7 +73,7 @@
* @throws IllegalAccessException see {@link Method#invoke(Object, Object[])}
* @throws InvocationTargetException see {@link Method#invoke(Object, Object[])}
*/
- protected void performInvocation(final Method method, final String[] args) throws IllegalAccessException, InvocationTargetException {
+ protected void performInvocation(@NotNull final Method method, @NotNull final String[] args) throws IllegalAccessException, InvocationTargetException {
method.invoke(target, (Object[]) args);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|