18 lines
252 B
Java
Raw Normal View History

2014-08-11 21:43:08 +03:00
package com.iluwatar;
2014-08-31 08:42:01 +03:00
/**
*
* Singleton class.
*
*/
2014-08-11 21:43:08 +03:00
public class IvoryTower {
private static IvoryTower instance = new IvoryTower();
2014-08-11 21:43:08 +03:00
2014-09-06 23:54:25 +01:00
private IvoryTower() {}
2014-08-11 21:43:08 +03:00
public static IvoryTower getInstance() {
return instance;
}
}