I had a constructor in an inner class with the following
declaration:

public DayInfo(final YearMonthDay date,
               final int firstIndex,
               final boolean hasCurrentEvents,
               final int lastIndex)


After performing a Change Signature refactoring, I ended up with (notice the
improper
formatting):

public DayInfo(final YearMonthDay date,
               final int firstIndex,
               final int lastIndex, final boolean hasCurrentEvents
               )

The entire project compiled with no errors before and after the refactoring.

Tal



_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to