I imported class Logger
from package java.util.logging
by using import java.util.logging.Logger
. In addition to that, as per requirement I need to import user created class from some other package. But the problem is, that class name also Logger
[Created in user defined package]. I don't have permissions to change the name of that user defined class and package. Both classes have the static methods.
So I need to import two both classes, then what is feasible solution for this?