[
https://issues.apache.org/jira/browse/BEANUTILS-484?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17525813#comment-17525813
]
Ng Tsz Sum commented on BEANUTILS-484:
--------------------------------------
This problem is not reproducible in
[c09e8de8|https://github.com/apache/commons-beanutils/commit/c09e8de8a0226ca288a9a7776f7d843ab610024e]
{code:java}
import java.lang.reflect.InvocationTargetException;
public class TestInvalidCase {
public String getEld() {
return eld;
}
public void setEld(String eld) {
this.eld = eld;
}
private String eld;
public static void main(String[] args) throws InvocationTargetException,
IllegalAccessException, NoSuchMethodException {
System.out.println(BeanUtils.describe(new TestInvalidCase()));
// {eld=null}
}
} {code}
> Invalid case "eId" field
> ------------------------
>
> Key: BEANUTILS-484
> URL: https://issues.apache.org/jira/browse/BEANUTILS-484
> Project: Commons BeanUtils
> Issue Type: Bug
> Reporter: Daneel Yaitskov
> Priority: Major
>
> BeanUtils.describe returns "EId" for field "eId".
> I expected "eId" instead.
--
This message was sent by Atlassian Jira
(v8.20.7#820007)