public class A { void test(int count) { String t = null; } void callTest() { test(1); } void callTest2() { test(2); } }