Conditions | 1 |
Total Lines | 5 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | package com.hltech.pact.gen.domain.client.jaxrs; |
||
27 | private Set<Class<?>> methodAnnotatedClients(String packageRoot) { |
||
28 | return new Reflections(packageRoot, new MethodAnnotationsScanner()) |
||
29 | .getMethodsAnnotatedWith(Path.class).stream() |
||
30 | .map(Method::getDeclaringClass) |
||
31 | .collect(Collectors.toSet()); |
||
32 | } |
||
34 |