skip ignoring whitespaces when choosing the anchor (IDEA-93459)

This commit is contained in:
anna
2012-10-24 17:09:39 +02:00
parent 7198085cd4
commit 7b4b48764d
3 changed files with 14 additions and 1 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>
}