insert template: do not handle [] twice (IDEA-69106)

(cherry picked from commit 2b98c3ab3529a3b1a0f34a3e3e4f62d393ce4d61)
This commit is contained in:
anna
2011-05-03 17:30:01 +02:00
parent 789a534621
commit 4814482749
3 changed files with 18 additions and 14 deletions

View File

@@ -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>
}
}

View File

@@ -0,0 +1,7 @@
// "Create Method 'test'" "true"
public class Test {
public Test() {
byte[] bytes = new byte[0];
te<caret>st(bytes);
}
}