19 lines
255 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();
private IvoryTower() {
}
public static IvoryTower getInstance() {
return instance;
}
}