Alain,
this is fixed in #636. Thank you!

Friendly,
        Dmitry

Alain Ravet wrote:
> In 635
> 
> 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);
> 


-- 
Dmitry Lomov
JetBrains Inc. / IntelliJ Software
http://www.intellij.com
"Develop with pleasure!"

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

Reply via email to