PDA

View Full Version : imports


BubikolRamios
03-09-2009, 01:41 AM
<%@page import="org.apache.commons.lang.ObjectUtils"%>
<%@page import="org.apache.commons.lang.*"%>

is there any difference regarding memory consumption or anything else beetween those two declaratiions ? Need only ObjectUtils.

Trinithis
03-10-2009, 01:15 AM
Compilers are smart enough to not import things they do not need. (Well, any decent compiler that is.)