From b16db904cc0d87f68a9f10816b1b33aca9a398da Mon Sep 17 00:00:00 2001 From: MattBDev <4009945+MattBDev@users.noreply.github.com> Date: Tue, 11 Feb 2020 17:09:36 -0500 Subject: [PATCH] Removed unused class which should be unbreaking. --- .../plot/generator/PlotGenerator.java | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java deleted file mode 100644 index 88c7f2557..000000000 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/generator/PlotGenerator.java +++ /dev/null @@ -1,37 +0,0 @@ -package com.github.intellectualsites.plotsquared.plot.generator; - -import com.github.intellectualsites.plotsquared.plot.object.PlotArea; -import com.github.intellectualsites.plotsquared.plot.object.PlotId; -import com.github.intellectualsites.plotsquared.plot.object.PlotManager; -import com.github.intellectualsites.plotsquared.plot.object.SetupObject; - -public abstract class PlotGenerator { - - public final T generator; - - public PlotGenerator(T generator) { - this.generator = generator; - } - - public abstract void initialize(PlotArea plotArea); - - /** - * TYPE = 2; - * new AugmentedPopulator(world, generator, cluster, plotWorld.TERRAIN == 2, plotWorld.TERRAIN != 2); - * TYPE = 1 - * new AugmentedPopulator(world, gen_class, null, plotWorld.TERRAIN == 2, plotWorld.TERRAIN != 2); - * - * @param area - */ - public abstract void augment(PlotArea area); - - public abstract PlotArea getNewPlotArea(String world, String id, PlotId min, PlotId max); - - public abstract PlotManager getPlotManager(); - - public abstract boolean isFull(); - - public abstract String getName(); - - public abstract void processSetup(SetupObject object); -}