in pojo/src/main/java/com/spotify/hamcrest/pojo/IsPojo.java [94:100]
private Method methodWithName(String methodName, A self) throws NoSuchMethodException {
try {
return self.getClass().getDeclaredMethod(methodName);
} catch (NoSuchMethodException e) {
return self.getClass().getMethod(methodName);
}
}