14 lines
215 B
Java
14 lines
215 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
public class IvoryTower {
|
||
|
|
||
|
private static IvoryTower instance = new IvoryTower();
|
||
|
|
||
|
private IvoryTower() {
|
||
|
}
|
||
|
|
||
|
public static IvoryTower getInstance() {
|
||
|
return instance;
|
||
|
}
|
||
|
}
|