(final ClassNode type)
| 620 | } |
| 621 | |
| 622 | public static boolean isSAMType(final ClassNode type) { |
| 623 | return findSAM(type) != null; |
| 624 | } |
| 625 | |
| 626 | public static boolean isFunctionalInterface(final ClassNode type) { |
| 627 | // Functional interface must be an interface at first, or the following exception will occur: |
no test coverage detected