mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
java: expression context for array.stream postfix template IDEA-157975
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
package templates;
|
||||
|
||||
public class Foo {
|
||||
void m(int[] array) {
|
||||
if (array.stream<caret>) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package templates;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class Foo {
|
||||
void m(int[] array) {
|
||||
if (Arrays.stream(array)) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user