hi,

just a small thing. it is possible to optimize out the debug code in
JDBCCommand.java and WebServer.java, just modify

   public static boolean = false;
to
   public static final boolean debug = false;

during compile time, if a constant evaluates to true, the compiler omits the
conditional statement at all. so if there is no need of setting this
property at the runtime, changing this would probably be a good idea.

regards,
--andrius


Reply via email to