@ -37,12 +37,12 @@ public class Singleton3 {
public static Singleton3 getInstance(){
if(instance == null){
synchronized(Singleton3.class){
instance = new Singleton3();
}
return instance;