(Class[] idealMatch, Constructor[] constructors)
| 583 | don't have a common interface for their signatures |
| 584 | */ |
| 585 | static Constructor findMostSpecificConstructor(Class[] idealMatch, Constructor[] constructors) { |
| 586 | int match = findMostSpecificConstructorIndex(idealMatch, constructors); |
| 587 | return (match == -1) ? null : constructors[match]; |
| 588 | } |
| 589 | |
| 590 | |
| 591 | static int findMostSpecificConstructorIndex(Class[] idealMatch, Constructor[] constructors) { |
no test coverage detected