Update IvoryTower.java

fixed the issue with class creation.
This commit is contained in:
Yusuf Aytaş 2014-09-07 00:44:32 +01:00
parent 459b696777
commit 3d55749042

View File

@ -13,7 +13,7 @@ public class IvoryTower {
public static IvoryTower getInstance() {
if(instance == null){
instance = IvoryTower();
instance = new IvoryTower();
}
return instance;
}