Removed constructors

This commit is contained in:
Sekwah 2018-07-05 02:12:10 +01:00
parent 7db153460d
commit 1e44e45a14
3 changed files with 4 additions and 5 deletions

View File

@ -125,9 +125,9 @@ public class AdvancedPortalsCore {
this.registerPortalCommand();
this.registerDestinationCommand();
this.portalServices.loadPortals(this);
this.portalServices.loadPortals();
this.destiServices.loadDestinations(this);
this.destiServices.loadDestinations();
this.infoLogger.log(Lang.translate("logger.pluginenable"));
}

View File

@ -13,9 +13,8 @@ import java.util.ArrayList; /**
public final class DestinationServices {
/**
* @param portalsCore
*/
public void loadDestinations(AdvancedPortalsCore portalsCore) {
public void loadDestinations() {
}

View File

@ -21,7 +21,7 @@ public final class PortalServices {
public void loadPortals(AdvancedPortalsCore advancedPortalsCore) {
public void loadPortals() {
}