Hi All
Try to copy this sample class in IDEA and you get the line:
this(MODE_ADDING); highlighted as an error:
public class Test
{
public static final int MODE_ADDING = 0;
public static final int MODE_MOVING = 1;
public static final int MODE_DELETING = 2;
private int editingMode;
public Test()
{
this(MODE_ADDING);
}
public Test(int editingMode)
{
this.editingMode = editingMode;
}
}
_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs