2
votes
7answers
424 views
Is Java Reflection on Inherited Methods Different in Windows and Linux?
While setting up Hudson for continous integration testing (on a JeOS server), I've come across some strange behaviour I'm hoping the fine people at SO can explain to me.
Our unit tests depe …
2
votes
1
vote
Is Java Reflection on Inherited Methods Different in Windows and Linux?
Mystery partially solved:
MethodUtils.getMatchingAccessibleMethod() apparently works differently on Linux and Windows.
By using MethodUtils.getAccessibleMethod() instead, it works. …
