From cc256aa246475f2f1631b13dda13a7524fcfcb24 Mon Sep 17 00:00:00 2001 From: TomyLobo Date: Mon, 26 Dec 2011 00:56:20 +0100 Subject: [PATCH] Added license blocks to some files that were still missing them. Copied from files from the same directory. --- .../util/commands/SimpleInjector.java | 18 ++++++++++++++++++ .../java/com/sk89q/util/yaml/YAMLFormat.java | 19 +++++++++++++++++++ .../LegacyPermissionsProviderWrapper.java | 19 +++++++++++++++++++ .../sk89q/wepif/WEPIFRuntimeException.java | 19 +++++++++++++++++++ .../worldedit/PlayerNeededException.java | 19 +++++++++++++++++++ .../worldedit/bukkit/BukkitCommandSender.java | 19 +++++++++++++++++++ .../worldedit/bukkit/WorldEditCommand.java | 19 +++++++++++++++++++ 7 files changed, 132 insertions(+) diff --git a/src/main/java/com/sk89q/minecraft/util/commands/SimpleInjector.java b/src/main/java/com/sk89q/minecraft/util/commands/SimpleInjector.java index f524b1107..af71b54df 100644 --- a/src/main/java/com/sk89q/minecraft/util/commands/SimpleInjector.java +++ b/src/main/java/com/sk89q/minecraft/util/commands/SimpleInjector.java @@ -1,3 +1,21 @@ +// $Id$ +/* + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.minecraft.util.commands; import java.lang.reflect.Constructor; diff --git a/src/main/java/com/sk89q/util/yaml/YAMLFormat.java b/src/main/java/com/sk89q/util/yaml/YAMLFormat.java index 66686238b..aa1cc9016 100644 --- a/src/main/java/com/sk89q/util/yaml/YAMLFormat.java +++ b/src/main/java/com/sk89q/util/yaml/YAMLFormat.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * RegionBook + * Copyright (C) 2010, 2011 sk89q and contributors + * + * 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.sk89q.util.yaml; import org.yaml.snakeyaml.DumperOptions.FlowStyle; diff --git a/src/main/java/com/sk89q/wepif/LegacyPermissionsProviderWrapper.java b/src/main/java/com/sk89q/wepif/LegacyPermissionsProviderWrapper.java index 49cc3ffe7..0dd5480ad 100644 --- a/src/main/java/com/sk89q/wepif/LegacyPermissionsProviderWrapper.java +++ b/src/main/java/com/sk89q/wepif/LegacyPermissionsProviderWrapper.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * WorldEdit + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.wepif; import org.bukkit.OfflinePlayer; diff --git a/src/main/java/com/sk89q/wepif/WEPIFRuntimeException.java b/src/main/java/com/sk89q/wepif/WEPIFRuntimeException.java index 954b938ec..e99f03875 100644 --- a/src/main/java/com/sk89q/wepif/WEPIFRuntimeException.java +++ b/src/main/java/com/sk89q/wepif/WEPIFRuntimeException.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * WorldEdit + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.wepif; /** diff --git a/src/main/java/com/sk89q/worldedit/PlayerNeededException.java b/src/main/java/com/sk89q/worldedit/PlayerNeededException.java index eac92f96c..33e137f20 100644 --- a/src/main/java/com/sk89q/worldedit/PlayerNeededException.java +++ b/src/main/java/com/sk89q/worldedit/PlayerNeededException.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * WorldEdit + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.worldedit; /** diff --git a/src/main/java/com/sk89q/worldedit/bukkit/BukkitCommandSender.java b/src/main/java/com/sk89q/worldedit/bukkit/BukkitCommandSender.java index b42a9fb18..5747a4607 100644 --- a/src/main/java/com/sk89q/worldedit/bukkit/BukkitCommandSender.java +++ b/src/main/java/com/sk89q/worldedit/bukkit/BukkitCommandSender.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * WorldEdit + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.worldedit.bukkit; import org.bukkit.command.CommandSender; diff --git a/src/main/java/com/sk89q/worldedit/bukkit/WorldEditCommand.java b/src/main/java/com/sk89q/worldedit/bukkit/WorldEditCommand.java index a97bc89b4..5371defe9 100644 --- a/src/main/java/com/sk89q/worldedit/bukkit/WorldEditCommand.java +++ b/src/main/java/com/sk89q/worldedit/bukkit/WorldEditCommand.java @@ -1,3 +1,22 @@ +// $Id$ +/* + * WorldEdit + * Copyright (C) 2010 sk89q and contributors + * + * 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.sk89q.worldedit.bukkit; import java.util.ArrayList;