Bugfix, classic this.foo = this.foo error.

Noticed by Andy Freeman.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2002-11-25 17:35:57 +00:00
parent 6b8ba82f14
commit 21ff810b47
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public Notifier(Class listener) {
throw new IllegalArgumentException("Illegal to have a null listener Class. ");
}
this.clss = clss;
this.clss = listener;
// now we check methods, if only one of them, then
// let's set it
Method[] meths = clss.getDeclaredMethods();