When you "Replace Temp by Query" the 2nd var. in the code below,
IDEA vapourizes the 1st var. declaration.



Before :
********

    final boolean
         firstDetected  = ! _previousFirstLetter.equals(firstLetter),
         secondDetected = "".equals(__previousFirstLetter);

         if ( firstDetected ) {
             ...
         }


Action :
********
         "Replace Temp By Query" the 2nd variable


After :
*******

         if ( firstDetected () ) {
             ...
         }



Problem :
*********

the 1st var. declaration was deleted :
// MISSING : DELETED BY IDEA
//  boolean
//     firstDetected  = ! __previousFirstLetter.equals(firstLetter);

_______________________________________________
Eap-bugs mailing list
[EMAIL PROTECTED]
http://lists.jetbrains.com/mailman/listinfo/eap-bugs

Reply via email to