Description
In samples/jax_rs/spring_boot shipped with CXF kit, we can see warning message like
WARNING: Both org.apache.cxf.jaxrs.openapi.OpenApiCustomizedResource#getOpenApi and org.apache.cxf.jaxrs.openapi.OpenApiCustomizedResource#getOpenApi are equal candidates for handling the current request which can lead to unpredictable results
when using swagger-ui.
This is caused by that class OpenApiCustomizedResource has getOpenApi method, but its parent class OpenApiResource also has getOpenApi method, two methods are using different signatures. OperationResourceInfoComparator shouldn't see two methods as same because they are different