wujimin created SCB-1165:
----------------------------
Summary: filter bridge methods when generate swagger
Key: SCB-1165
URL: https://issues.apache.org/jira/browse/SCB-1165
Project: Apache ServiceComb
Issue Type: Task
Components: Java-Chassis
Reporter: wujimin
{code:java}
interface Base<T> {
void test(T input);
}
interface Child extends Base<String> {
void test(String input);
}
class Impl implements Child {
......
}{code}
Impl.class.getMethods() will get two method name "test", one is normal method,
another is bridge method.
https://github.com/apache/servicecomb-java-chassis/issues/1104
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)