mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
insert template: do not handle [] twice (IDEA-69106)
(cherry picked from commit 2b98c3ab3529a3b1a0f34a3e3e4f62d393ce4d61)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
public Test() {
|
||||
byte[] bytes = new byte[0];
|
||||
test(bytes);
|
||||
}
|
||||
|
||||
private void test(byte[] bytes) {
|
||||
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
public Test() {
|
||||
byte[] bytes = new byte[0];
|
||||
te<caret>st(bytes);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user