Hello,

I found an error in the extract method:
I have he code:

        return new String[] {
            ((true
                || false) ?
                "a" : "b"),
            "test"
        };
I extract the code:
           ((true
                || false) ?
                "a" : "b")

I obtain:
        return new String[] {
            testExtract(),
            "test"
        };
and the method:
    private String[] testExtract() {
        return ((true
                        || false) ?
                        "a" : "b");
    }

This methode has an error in the signature private String[] testExtract()
it should be private String testExtract() .

I am really proud to find a bug in your application because they are so 
rare.

You do a very good job,
Thank you, I really develop with pleasure.

Francois Montmasson

_________________________________________________________________
Rejoignez le plus grand service de messagerie au monde avec MSN Hotmail. 
http://www.hotmail.com


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

Reply via email to