It seems strange that I can\'t import static java.lang.System.out.println, when I can import static java.lang.Math.abs. Is there some reason behind this or am I doing somet
Peter's answer seems to be the best work around. But without arguments the use cases are a bit limited.
static void println(T arg) { System.out.println(arg); }