Removed unneeded system outs

This commit is contained in:
Sekwah 2018-07-05 03:18:23 +01:00
parent f219b99e3a
commit a7d49e7eae
4 changed files with 0 additions and 7 deletions

View File

@ -69,9 +69,6 @@ public class AdvancedPortalsCore {
this.dataCollector = dataCollector;
this.mcMinorVer = this.checkMcVer(mcVer);
System.out.println("Core");
this.onEnable();
}

View File

@ -25,7 +25,6 @@ public class CreatePortalSubCommand extends CreateSubCommand implements SubComma
}
ArrayList<DataTag> portalTags = this.getTagsFromArgs(args);
System.out.println(Arrays.toString(portalTags.toArray()));
AdvancedPortal portal = AdvancedPortalsCore.getPortalServices().createPortal(args[1], player, portalTags);
if(portal != null) {
sender.sendMessage(Lang.translateColor("messageprefix.positive") + Lang.translateColor("command.create.complete"));

View File

@ -16,7 +16,6 @@ public class RepositoryModule extends AbstractModule {
@Override
protected void configure() {
System.out.println("Configured");
bind(PortalRepository.class).to(PortalRepositoryImpl.class).in(Scopes.SINGLETON);
bind(DestinationRepository.class).to(DestinationRepositoryImpl.class).in(Scopes.SINGLETON);
bind(PortalTempDataRepository.class).to(PortalTempDataRepositoryImpl.class).in(Scopes.SINGLETON);
@ -25,7 +24,6 @@ public class RepositoryModule extends AbstractModule {
@Provides
AdvancedPortalsCore providePortalsCore() {
System.out.println("TEST");
return this.portalsCore;
}
}

View File

@ -23,7 +23,6 @@ public class SpigotWorldContainer implements WorldContainer {
public void setBlockData(PortalLocation location, byte data) {
MaterialData matData = world.getBlockAt(location.posX, location.posY, location.posZ).getState().getData();
if(matData instanceof Directional) {
System.out.println("IS DIRECTIONAL");
Directional dir = (Directional) world.getBlockAt(location.posX, location.posY, location.posZ).getState().getData();
dir.setFacingDirection(BlockFace.NORTH);
}