(DoubleConsumer progressReceiver)
| 567 | } |
| 568 | |
| 569 | public boolean autoMatchMethods(DoubleConsumer progressReceiver) { |
| 570 | return autoMatchMethods(autoMatchLevel, absMethodAutoMatchThreshold, relMethodAutoMatchThreshold, progressReceiver); |
| 571 | } |
| 572 | |
| 573 | public boolean autoMatchMethods(ClassifierLevel level, double absThreshold, double relThreshold, DoubleConsumer progressReceiver) { |
| 574 | AtomicInteger totalUnmatched = new AtomicInteger(); |
no test coverage detected