class X { public void test(String s) { System.out.println(s.trim()); } void use() { test(null); } }