IDEA-111362 Generate constructor removes "m" from variable name

This commit is contained in:
peter
2013-08-01 16:57:08 +02:00
parent c2099f41be
commit 83a2d9cb96
4 changed files with 23 additions and 2 deletions
@@ -0,0 +1,8 @@
class Parent {
Object menu;
Parent(Object menu) {
this.menu = menu;
}
}
@@ -0,0 +1,5 @@
class Parent {
Object menu;
<caret>
}