Cleanup (test data formatting)

This commit is contained in:
Roman Shevchenko
2018-06-19 15:09:54 +03:00
parent 6a85ff1fb5
commit 4f048d886a
@@ -4,12 +4,10 @@ import java.util.stream.Collectors;
import java.util.stream.Stream;
class MyTest {
private void getMethods(final Stream<Method> stream) {
final var collector = Collectors.toMap(null, c -> {
System.out.println(c);
return new LinkedHashMap<String, Integer>();
}, (v1, v2) -> v2, null);
}
}