extract interface from core
[jSite2.git] / src / net / pterodactylus / jsite / main / Main.java
index 0c7e637..42012e1 100644 (file)
@@ -21,7 +21,7 @@ package net.pterodactylus.jsite.main;
 
 import java.io.File;
 
-import net.pterodactylus.jsite.core.Core;
+import net.pterodactylus.jsite.core.CoreImpl;
 import net.pterodactylus.jsite.core.NodeManager;
 import net.pterodactylus.jsite.core.ProjectManager;
 import net.pterodactylus.jsite.gui.SwingInterface;
@@ -48,7 +48,7 @@ public class Main {
         * Starts the core and the default {@link SwingInterface}.
         */
        private void start() {
-               Core core = new Core();
+               CoreImpl core = new CoreImpl();
 
                String configDirectory = System.getProperty("user.home") + File.separator + ".jSite";