Constructs a new Method. @param name the method's name. @param descriptor the method's descriptor.
(final String name, final String descriptor)
| 71 | * @param descriptor the method's descriptor. |
| 72 | */ |
| 73 | public Method(final String name, final String descriptor) { |
| 74 | this.name = name; |
| 75 | this.descriptor = descriptor; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Constructs a new {@link Method}. |
nothing calls this directly
no test coverage detected