From 4b44136c771bba1597286f2dd0accd20d61bc5fa Mon Sep 17 00:00:00 2001 From: Falkreon Date: Tue, 29 Jan 2019 19:45:56 -0600 Subject: [PATCH] LicenseFormat --- .../elytradev/thermionics/StringExtras.java | 2 +- .../thermionics/block/BlockRFMotor.java | 24 +++++++++++++++++++ .../tileentity/TileEntityRFMotor.java | 24 +++++++++++++++++++ 3 files changed, 49 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/elytradev/thermionics/StringExtras.java b/src/main/java/com/elytradev/thermionics/StringExtras.java index 0cb0c25..63f1a48 100644 --- a/src/main/java/com/elytradev/thermionics/StringExtras.java +++ b/src/main/java/com/elytradev/thermionics/StringExtras.java @@ -1,7 +1,7 @@ /* * MIT License * - * Copyright (c) 2018 Isaac Ellingson (Falkreon) and contributors + * Copyright (c) 2017 Isaac Ellingson (Falkreon) and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/com/elytradev/thermionics/block/BlockRFMotor.java b/src/main/java/com/elytradev/thermionics/block/BlockRFMotor.java index 1e2ce6c..d19462a 100644 --- a/src/main/java/com/elytradev/thermionics/block/BlockRFMotor.java +++ b/src/main/java/com/elytradev/thermionics/block/BlockRFMotor.java @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2017 Isaac Ellingson (Falkreon) and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package com.elytradev.thermionics.block; import com.elytradev.thermionics.tileentity.TileEntityRFMotor; diff --git a/src/main/java/com/elytradev/thermionics/tileentity/TileEntityRFMotor.java b/src/main/java/com/elytradev/thermionics/tileentity/TileEntityRFMotor.java index 6fc617a..ad59b35 100644 --- a/src/main/java/com/elytradev/thermionics/tileentity/TileEntityRFMotor.java +++ b/src/main/java/com/elytradev/thermionics/tileentity/TileEntityRFMotor.java @@ -1,3 +1,27 @@ +/* + * MIT License + * + * Copyright (c) 2017 Isaac Ellingson (Falkreon) and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + package com.elytradev.thermionics.tileentity; import java.util.HashSet;