From fc2ffff7562b67d5e29aac92137e32a5e8cb6b6b Mon Sep 17 00:00:00 2001 From: Daniel Saukel Date: Sat, 23 Feb 2019 21:59:05 +0100 Subject: [PATCH] Delete WorldUpdateTask.java --- .../dungeonsxl/world/WorldUpdateTask.java | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/main/java/de/erethon/dungeonsxl/world/WorldUpdateTask.java diff --git a/src/main/java/de/erethon/dungeonsxl/world/WorldUpdateTask.java b/src/main/java/de/erethon/dungeonsxl/world/WorldUpdateTask.java deleted file mode 100644 index 678d571c..00000000 --- a/src/main/java/de/erethon/dungeonsxl/world/WorldUpdateTask.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2012-2019 Frank Baumann - * - * 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 de.erethon.dungeonsxl.world; - -import de.erethon.dungeonsxl.DungeonsXL; -import org.bukkit.scheduler.BukkitRunnable; - -/** - * - * @author Daniel Saukel - */ -public class WorldUpdateTask extends BukkitRunnable { - - private DungeonsXL plugin; - - public WorldUpdateTask(DungeonsXL plugin) { - this.plugin = plugin; - } - - @Override - public void run() { - for (DGameWorld gameWorld : plugin.getDWorldCache().getGameWorlds()) { - gameWorld.update(); - } - } - -}