This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
FYI: Patch: gnu.java.beans.IntrospectionIncubator
- From: Michael Koch <konqueror at gmx dot de>
- To: java-patches at gcc dot gnu dot org
- Date: Wed, 29 Oct 2003 17:28:34 +0100
- Subject: FYI: Patch: gnu.java.beans.IntrospectionIncubator
hi list,
I commited the attached patch to merge gnu.java.beans.IntrospectionIncubator
with classpath again.
Michael
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2307
diff -u -b -B -r1.2307 ChangeLog
--- ChangeLog 29 Oct 2003 14:53:59 -0000 1.2307
+++ ChangeLog 29 Oct 2003 15:21:40 -0000
@@ -1,3 +1,8 @@
+2003-10-29 Dalibor Topic <robilad@kaffe.org>
+
+ * gnu/java/beans/IntrospectionIncubator.java (addMethod): Add public
+ static methods.
+
2003-10-29 Julian Dolby <dolby@us.ibm.com>
* javax/naming/spi/NamingManager.java (getContinuationContext): Call
Index: gnu/java/beans/IntrospectionIncubator.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/beans/IntrospectionIncubator.java,v
retrieving revision 1.2
diff -u -b -B -r1.2 IntrospectionIncubator.java
--- gnu/java/beans/IntrospectionIncubator.java 22 Jan 2002 22:39:49 -0000 1.2
+++ gnu/java/beans/IntrospectionIncubator.java 29 Oct 2003 15:21:40 -0000
@@ -67,7 +67,7 @@
/* Paving the way for automatic Introspection */
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();