Skip to content
Snippets Groups Projects
Commit ab313bf3 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #2997 from APriestman/2916_moveCentralRepoPackage

Move the Central Repository in Core
parents 6420596b 0ef191fc
No related branches found
No related tags found
No related merge requests found
Showing
with 14 additions and 0 deletions
......@@ -35,6 +35,20 @@ public class Installer extends ModuleInstall {
private final PropertyChangeListener pcl = new CaseEventListener();
private final IngestEventsListener ieListener = new IngestEventsListener();
private static Installer instance;
public synchronized static Installer getDefault() {
if (instance == null) {
instance = new Installer();
}
return instance;
}
private Installer() {
super();
}
@Override
public void restored() {
Case.addPropertyChangeListener(pcl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment