From 1b188977a017a4b649182982a481b2bff308c955 Mon Sep 17 00:00:00 2001 From: jojo Date: Thu, 24 Dec 2020 12:07:11 +0100 Subject: [PATCH] Add Copyright Optimize Imports --- .../src/de/steamwar/core/Core.java | 4 ---- .../steamwar/core/ExceptionlessCallable.java | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/SpigotCore_Main/src/de/steamwar/core/Core.java b/SpigotCore_Main/src/de/steamwar/core/Core.java index cf28ec6..db5a023 100644 --- a/SpigotCore_Main/src/de/steamwar/core/Core.java +++ b/SpigotCore_Main/src/de/steamwar/core/Core.java @@ -28,10 +28,6 @@ import de.steamwar.sql.SQL; import org.bukkit.Bukkit; import org.bukkit.plugin.java.JavaPlugin; -import java.util.Optional; -import java.util.concurrent.Callable; -import java.util.logging.Logger; - public class Core extends JavaPlugin{ private static Core instance; diff --git a/SpigotCore_Main/src/de/steamwar/core/ExceptionlessCallable.java b/SpigotCore_Main/src/de/steamwar/core/ExceptionlessCallable.java index 044c83f..1b17a27 100644 --- a/SpigotCore_Main/src/de/steamwar/core/ExceptionlessCallable.java +++ b/SpigotCore_Main/src/de/steamwar/core/ExceptionlessCallable.java @@ -1,3 +1,22 @@ +/* + This file is a part of the SteamWar software. + + Copyright (C) 2020 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.core; @FunctionalInterface