When Idea is asked to generate a new local variable for this code:

    if (conditional)
        unknownVariable = 5;

I get:

    if (conditional)
        int unkownVariable;
        unknownVariable = 5;

This 'removes' the controlled statement outside the if (), 
and unknownVariable can still not be resolved!

Edwin Delsman


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

Reply via email to