Re: [lang] Release 1.0.1 test cut

2002-11-25 Thread Andy_Freeman
I have only used the ToStringBuilder class out of the builders package. Has anyone tried the other builders to see how they work in subclasses? http://issues.apache.org/bugzilla/show_bug.cgi?id=14447 Thanks, Andy

[lang] unused variables in MethodUtils

2002-11-25 Thread Andy_Freeman
The methodName and parameterTypes variables are never used. public static Method getAccessibleMethod(Method method) { ... // Check the implemented interfaces and subinterfaces String methodName = method.getName(); Class[] parameterTypes = method.getParameterTypes();

[lang] notifier bug?

2002-11-25 Thread Andy_Freeman
Is the this.clss assignment correct? Shouldn't it be this.clss = listener? public Notifier(Class listener) { if(listener == null) { throw new IllegalArgumentException(Illegal to have a null listener Class. ); } this.clss = clss; // now we check