mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Merge remote-tracking branch 'origin/master' into amakeev/gradle
GitOrigin-RevId: f9a633252daf311ecab19002c0f4757052eee9dc
This commit is contained in:
committed by
intellij-monorepo-bot
parent
47bb3d8475
commit
c105e26db3
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.stream.*;
|
||||
|
||||
class X {
|
||||
|
||||
{
|
||||
Stream<String> stringStream = Stream.of("1", "2", "2");
|
||||
stringStream.collect(Collectors.groupingBy(s -> s, Collectors.counting())<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.stream.*;
|
||||
|
||||
class X {
|
||||
|
||||
{
|
||||
Stream<String> stringStream = Stream.of("1", "2", "2");
|
||||
stringStream.collect(Collectors.groupingBy(s -> s, Collectors.count<caret>));
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user