Optimise imports confused with JDK 1.5
Optimise imports seems to be confused between JDK 1.5 static imports and plain package imports which are different things
e.g.
import static nsxl.rotations.EulerAngle.Angle.*;
import nsxl.rotations.EulerAngle.Angle;
is optimised to
import static nsxl.rotations.EulerAngle.Angle.*;
Please sign in to leave a comment.
"Dr Gary Thomspon" <no_mail@jetbrains.com> wrote in message
news:30229091.1085326698856.JavaMail.itn@is.intellij.net...
plain package imports which are different things
>
>
>
>
The example you report does not still sound like a bug to me. Please provide
the full text of the file that was optimized.
Eugene.