update anchor to skip whitespaces (IDEA-93459)

This commit is contained in:
anna
2013-02-21 11:38:11 +01:00
parent 8a5ff22d72
commit 5c8e94689b
3 changed files with 27 additions and 6 deletions
@@ -0,0 +1,8 @@
// "Create Constructor" "true"
public enum ReportType {
AGING("Aging"),;
ReportType(String aging) {
<selection>//To change body of created methods use File | Settings | File Templates.</selection>
}
}
@@ -0,0 +1,4 @@
// "Create Constructor" "true"
public enum ReportType {
AGING("Aging")<caret>,
}