Get rid of singleton, and refactor LauncherFactory to be a static class

Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
solonovamax
2022-10-27 18:01:17 -04:00
committed by TheKodeToad
parent e68dcea6bc
commit 9062d28704
2 changed files with 17 additions and 19 deletions

View File

@ -138,10 +138,7 @@ public final class EntryPoint {
}
try {
Launcher launcher =
LauncherFactory
.INSTANCE
.createLauncher(params);
Launcher launcher = LauncherFactory.createLauncher(params);
launcher.launch();