From 41c670450b6e94e9554e9800467945e285d4a814 Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Thu, 6 Aug 2020 17:33:34 +0200 Subject: [PATCH] Remove PlotFilter --- .../com/plotsquared/core/plot/PlotFilter.java | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java b/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java deleted file mode 100644 index be1ce5c89..000000000 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotFilter.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * _____ _ _ _____ _ - * | __ \| | | | / ____| | | - * | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| | - * | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` | - * | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| | - * |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_| - * | | - * |_| - * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package com.plotsquared.core.plot; - -/** - * Use {@link com.plotsquared.core.util.query.PlotQuery} instead - */ -@Deprecated public abstract class PlotFilter { - public boolean allowsArea(final PlotArea area) { - return true; - } - - public boolean allowsPlot(final Plot plot) { - return true; - } - -}