1314151617181920212223
private static Twitter twitter = null; public static Twitter getTwitter() { if (twitter == null) { twitter = new Twitter("toaot", "TestPassword"); twitter.setCount(20); } System.out.println("CALL TO API"); return twitter; }