fix dum typo

This commit is contained in:
Alexander Söderberg 2020-05-24 00:08:52 +02:00 committed by Alexander Söderberg
parent 1aa144e47d
commit a0d1da3274
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ import com.plotsquared.core.plot.expiration.ExpireManager;
import java.util.Collection;
class ExploredPlotProvider implements PlotProvider {
class ExpiredPlotProvider implements PlotProvider {
@Override public Collection<Plot> getPlots() {
return ExpireManager.IMP.getPendingExpired();

View File

@ -116,7 +116,7 @@ public final class PlotQuery {
* @return The query instance
*/
@NotNull public PlotQuery expiredPlots() {
this.plotProvider = new ExploredPlotProvider();
this.plotProvider = new ExpiredPlotProvider();
return this;
}