You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
366 B
20 lines
366 B
package com.olexyn.ensync.artifacts;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class DataRoot {
|
|
|
|
private static HashMap<String, SyncBundle> mapOfSyncMaps;
|
|
|
|
private DataRoot() {}
|
|
|
|
public static HashMap<String, SyncBundle> get() {
|
|
|
|
if (mapOfSyncMaps == null) {
|
|
mapOfSyncMaps = new HashMap<>();
|
|
}
|
|
return mapOfSyncMaps;
|
|
|
|
}
|
|
}
|