I had a statement:

if (a == null)
     a = getA();

where getA is:

private A getA() {
     return x;
}

When inlining getA(), I end up with:

if (a == null) a = x;

The line break is lost.  This is probably because both lines are treated
as a single statement and "reprocessed".
-- 

Erb

==============================================================
"The only time I like in the morning is afternoon."
     - Russell D. Cooper

"If you do everything, then you're all done."
     - Melissa F. Cooper

"Most of you are familiar with the virtues of a programmer.
There are three, of course: laziness, impatience, and hubris."
     - Larry Wall
==============================================================


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

Reply via email to