Message5588

Author shamanzc
Recipients shamanzc
Date 2010-03-23.16:00:14
SpamBayes Score 0.014110265
Marked as misclassified No
Message-id <1269360014.79.0.268268137354.issue1578@psf.upfronthosting.co.za>
In-reply-to
Content
Probably this part of code guilty:
/usr/local/jython/src/org/python/core/PyJavaType.java

// Now check if it's a bean property accessor
String name = null;
boolean get = true;
if (methname.startsWith("get") && methname.length() > 3 && n == 0) {
name = methname.substring(3);
} else if (methname.startsWith("is") && methname.length() > 2 && n 0
&& meth.getReturnType() Boolean.TYPE) {
name = methname.substring(2);
} else if (methname.startsWith("set") && methname.length() > 3 && n == 1) {
name = methname.substring(3);
get = false;
}
History
Date User Action Args
2010-03-23 16:00:14shamanzcsetmessageid: <1269360014.79.0.268268137354.issue1578@psf.upfronthosting.co.za>
2010-03-23 16:00:14shamanzcsetrecipients: + shamanzc
2010-03-23 16:00:14shamanzclinkissue1578 messages
2010-03-23 16:00:14shamanzccreate