mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-16 10:59:03 +00:00
Formatted all files to the same standard
This commit is contained in:
@@ -3,13 +3,14 @@ package com.iluwatar;
|
||||
/**
|
||||
*
|
||||
* Singleton class.
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class IvoryTower {
|
||||
|
||||
private static IvoryTower instance = new IvoryTower();
|
||||
|
||||
private IvoryTower() {}
|
||||
|
||||
private IvoryTower() {
|
||||
}
|
||||
|
||||
public static IvoryTower getInstance() {
|
||||
return instance;
|
||||
|
||||
Reference in New Issue
Block a user