(String returnType, String[] paramTypes)
| 547 | |
| 548 | |
| 549 | private static String getMethodDescriptor(String returnType, String[] paramTypes) { |
| 550 | StringBuilder sb = new StringBuilder("("); |
| 551 | for (String paramType : paramTypes) { |
| 552 | sb.append(paramType); |
| 553 | } |
| 554 | sb.append(')').append(returnType); |
| 555 | return sb.toString(); |
| 556 | } |
| 557 | |
| 558 | |
| 559 | /** |
no test coverage detected