2005-02-21 Robert Schuster <theBohemian@gmx.net>
* gnu/java/beans/IntrospectionIncubator.java (addMethod) Reverts the patch that ntroduced a regression (see bug https://savannah.gnu.org/bugs/?func=detailitem&item_id=10938). From-SVN: r95355
This commit is contained in:
committed by
Michael Koch
parent
11e56db0bd
commit
89e4aa8109
@@ -99,8 +99,7 @@ public class IntrospectionIncubator {
|
||||
* @param method The method instance to examine.
|
||||
*/
|
||||
public void addMethod(Method method) {
|
||||
if(Modifier.isPublic(method.getModifiers()) &&
|
||||
!Modifier.isStatic(method.getModifiers())) {
|
||||
if(Modifier.isPublic(method.getModifiers())) {
|
||||
String name = ClassHelper.getTruncatedName(method.getName());
|
||||
Class retType = method.getReturnType();
|
||||
Class[] params = method.getParameterTypes();
|
||||
|
||||
Reference in New Issue
Block a user