18 lines
252 B
Java
18 lines
252 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Singleton class.
|
|
*
|
|
*/
|
|
public class IvoryTower {
|
|
|
|
private static IvoryTower instance = new IvoryTower();
|
|
|
|
private IvoryTower() {}
|
|
|
|
public static IvoryTower getInstance() {
|
|
return instance;
|
|
}
|
|
}
|