hello, i was wondering if an import statement forces the class to be loaded, even when that class is never used?
example:
import java.awt.Point;
public class Dummy {
public static void main(String[] args) {
// do nothing
}
}
will the java.awt.Point class be loaded even though it is never used?
thanks!