Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Bug in JDeveloper Remove Unused Imports feature

388346Jul 8 2003 — edited Jul 8 2003
Hi,
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 23 2023
Added on Jul 8 2003
2 comments
597 views