mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
IDEA-83668 soutp live template: take arrays into consideration
GitOrigin-RevId: 354497ccd320e7716e21ecb54c8f0daebfd96e43
This commit is contained in:
committed by
intellij-monorepo-bot
parent
aab311b9ac
commit
30f0b0ab21
@@ -1,10 +1,11 @@
|
||||
import java.lang.String;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class LiveTemplateTest {
|
||||
|
||||
void usage(int num, boolean someBoolean, List<String> args){
|
||||
System.out.println("num = [" + num + "], someBoolean = [" + someBoolean + "], args = [" + args + "]");<caret>
|
||||
void usage(boolean b, int[] ints, int[][] deepInts, Object[][] deepObjects) {
|
||||
System.out.println("b = " + b + ", ints = " + Arrays.toString(ints) + ", deepInts = " + Arrays.deepToString(deepInts) + ", deepObjects = " + Arrays.deepToString(deepObjects));<caret>
|
||||
}
|
||||
|
||||
}
|
||||
@@ -3,7 +3,7 @@ import java.util.List;
|
||||
|
||||
public class LiveTemplateTest {
|
||||
|
||||
void usage(int num, boolean someBoolean, List<String> args){
|
||||
void usage(boolean b, int[] ints, int[][] deepInts, Object[][] deepObjects) {
|
||||
<caret>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user