From 7b3a04f4ebff3857b3a174fcb4915910ef423bb5 Mon Sep 17 00:00:00 2001 From: D4rkr34lm Date: Fri, 22 May 2026 18:49:51 +0200 Subject: [PATCH] Remove unused custom event --- .../bausystem/utils/TickStartEvent.java | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 BauSystem/BauSystem_Main/src/de/steamwar/bausystem/utils/TickStartEvent.java diff --git a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/utils/TickStartEvent.java b/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/utils/TickStartEvent.java deleted file mode 100644 index fbb02f22..00000000 --- a/BauSystem/BauSystem_Main/src/de/steamwar/bausystem/utils/TickStartEvent.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * This file is a part of the SteamWar software. - * - * Copyright (C) 2025 SteamWar.de-Serverteam - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero 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 Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package de.steamwar.bausystem.utils; - -import org.bukkit.event.Event; -import org.bukkit.event.HandlerList; - -public class TickStartEvent extends Event { - - private static final HandlerList handlers = new HandlerList(); - - public HandlerList getHandlers() { - return handlers; - } - - public static HandlerList getHandlerList() { - return handlers; - } -}