Bug in JDeveloper Remove Unused Imports feature
388346Jul 8 2003 — edited Jul 8 2003Hi,
I just detected the following funny behavior in the Remove Unused Imports feature in JDeveloper:
Let's take the following dummy code:
package mypackage;
import oracle.jbo.domain.Date;
public class MyClass {
public MyClass() {
oracle.jbo.domain.Date oracleDate;
Date.getCurrentDate();
}
}
If I'm applying Remove Unused Imports on this code, import oracle.jbo.domain.Date will be eliminated.
Regards,
Dan