remove wrong capture treatment: the completion result is incorrect (IDEA-155188)

This commit is contained in:
peter
2016-05-03 14:20:26 +02:00
parent d76c71a4a4
commit 20f69c8111
3 changed files with 4 additions and 24 deletions

View File

@@ -1,8 +0,0 @@
import java.util.stream.*;
import java.util.*;
class Foo {
void main(Stream<? super String> stream) {
stream.collect(Collectors.toMap(o -> o.sub<caret>))
}
}