Remove ACF

This commit is contained in:
Paul Reilly
2023-05-19 16:46:45 -05:00
parent 47fcda6462
commit 8605120752
2 changed files with 0 additions and 68 deletions

View File

@ -4,7 +4,6 @@ import me.totalfreedom.data.*;
public class Registration
{
private final CommandRegistry commandRegistry;
private final EventRegistry eventRegistry;
private final UserRegistry userRegistry;
private final ServiceRegistry serviceRegistry;
@ -13,7 +12,6 @@ public class Registration
public Registration()
{
this.commandRegistry = new CommandRegistry();
this.eventRegistry = new EventRegistry();
this.userRegistry = new UserRegistry();
this.serviceRegistry = new ServiceRegistry();
@ -26,11 +24,6 @@ public class Registration
return moduleRegistry;
}
public CommandRegistry getCommandRegistry()
{
return commandRegistry;
}
public EventRegistry getEventRegistry()
{
return eventRegistry;