Tried to refactor an in-parameter to a method. Unfortunately Ariadne (602) hung and I 
had to restart.

This is the scenario:

(The code before any alteration, observe erranous javadoc comment)

    /**
     * Set the text in the filename field.
     * @param String filename
     */
    public void setFileName(String in_filename) {
        Txt_filename.setText((in_filename != null) ? in_filename : "");
        ...
    }

I manually edited the javadoc comment to:
    /**
     * Set the text in the filename field.
     * @param filename
     */

And then decided to refactor the name of the in parameter "in_filename" to just 
"filename".
Placed myself on the parameter name (in the method head) and pressed shift + F6.
All places where in_filname were used were shown without any trouble. But when I 
pressed "Do Refactor", Ariadne hung.
I managed to reproduce this error twice (in two tries).
Hope this was enough information for you.

/Christian


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

Reply via email to