From e70957e709bf4f6513ce29b80d8c7b66916b3a62 Mon Sep 17 00:00:00 2001 From: Flibio Date: Sun, 25 Feb 2018 08:43:44 -0700 Subject: [PATCH] Simplified license headers --- HEADER.txt | 23 +---------------- build.gradle | 6 ++--- .../flibio/economylite/CauseFactory.java | 23 +---------------- .../flibio/economylite/EconomyLite.java | 23 +---------------- .../github/flibio/economylite/PluginInfo.java | 23 +---------------- .../github/flibio/economylite/TextUtils.java | 23 +---------------- .../economylite/api/CurrencyEconService.java | 23 +---------------- .../economylite/api/PlayerEconService.java | 23 +---------------- .../economylite/api/VirtualEconService.java | 23 +---------------- .../flibio/economylite/bstats/Metrics.java | 23 +---------------- .../economylite/commands/MigrateCommand.java | 23 +---------------- .../economylite/commands/PayCommand.java | 23 +---------------- .../commands/admin/AddCommand.java | 23 +---------------- .../commands/admin/EconCommand.java | 23 +---------------- .../commands/admin/RemoveCommand.java | 23 +---------------- .../commands/admin/SetAllCommand.java | 23 +---------------- .../commands/admin/SetCommand.java | 23 +---------------- .../commands/balance/BalTopCommand.java | 23 +---------------- .../commands/balance/BalanceCommand.java | 23 +---------------- .../commands/currency/CurrencyCommand.java | 23 +---------------- .../currency/CurrencyCreateCommand.java | 23 +---------------- .../currency/CurrencyDeleteCommand.java | 23 +---------------- .../commands/currency/CurrencySetCommand.java | 23 +---------------- .../commands/virtual/PayVirtualCommand.java | 23 +---------------- .../commands/virtual/VirtualAddCommand.java | 23 +---------------- .../virtual/VirtualBalanceCommand.java | 23 +---------------- .../commands/virtual/VirtualEconCommand.java | 23 +---------------- .../commands/virtual/VirtualPayCommand.java | 23 +---------------- .../virtual/VirtualRemoveCommand.java | 23 +---------------- .../commands/virtual/VirtualSetCommand.java | 23 +---------------- .../economylite/impl/CurrencyService.java | 23 +---------------- .../economylite/impl/PlayerDataService.java | 23 +---------------- .../economylite/impl/PlayerServiceCommon.java | 23 +---------------- .../economylite/impl/VirtualDataService.java | 23 +---------------- .../impl/VirtualServiceCommon.java | 23 +---------------- .../impl/economy/LiteCurrency.java | 23 +---------------- .../impl/economy/LiteEconomyService.java | 23 +---------------- .../economy/account/LiteUniqueAccount.java | 23 +---------------- .../economy/account/LiteVirtualAccount.java | 23 +---------------- .../event/LiteEconomyTransactionEvent.java | 23 +---------------- .../registry/CurrencyRegistryModule.java | 23 +---------------- .../economy/result/LiteTransactionResult.java | 23 +---------------- .../economy/result/LiteTransferResult.java | 23 +---------------- .../flibio/economylite/modules/Module.java | 23 +---------------- .../modules/business/BusinessModule.java | 23 +---------------- .../modules/loan/LoanListener.java | 23 +---------------- .../economylite/modules/loan/LoanManager.java | 23 +---------------- .../economylite/modules/loan/LoanModule.java | 23 +---------------- .../modules/loan/LoanTextUtils.java | 23 +---------------- .../loan/command/LoanAcceptCommand.java | 23 +---------------- .../loan/command/LoanBalanceCommand.java | 23 +---------------- .../modules/loan/command/LoanCommand.java | 23 +---------------- .../modules/loan/command/LoanDenyCommand.java | 23 +---------------- .../modules/loan/command/LoanPayCommand.java | 23 +---------------- .../modules/loan/command/LoanTakeCommand.java | 23 +---------------- .../loan/event/LoanBalanceChangeEvent.java | 23 +---------------- .../modules/sql/PlayerSqlService.java | 23 +---------------- .../economylite/modules/sql/SqlModule.java | 23 +---------------- .../modules/sql/VirtualSqlService.java | 23 +---------------- src/main/resources/messages.properties | 25 ------------------- 60 files changed, 61 insertions(+), 1304 deletions(-) diff --git a/HEADER.txt b/HEADER.txt index 536d2c4..5540f0c 100644 --- a/HEADER.txt +++ b/HEADER.txt @@ -1,22 +1 @@ -This file is part of ${name}, licensed under the MIT License (MIT). - -Copyright (c) ${inceptionYear} - ${currentYear} ${owner} -Copyright (c) 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. \ No newline at end of file +This file is part of ${name}, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. \ No newline at end of file diff --git a/build.gradle b/build.gradle index 34726c4..3ab08da 100644 --- a/build.gradle +++ b/build.gradle @@ -52,9 +52,6 @@ license { // The project properties to use ext.name = project.name - ext.owner = project.owner - ext.inceptionYear = project.inceptionYear - ext.currentYear = project.currentYear // The file that contains the license header header file('HEADER.txt') @@ -62,6 +59,9 @@ license { // The source sets to apply the license to sourceSets = project.sourceSets + // Exclude properties files + exclude "**/*.properties" + ignoreFailures false strictCheck true diff --git a/src/main/java/io/github/flibio/economylite/CauseFactory.java b/src/main/java/io/github/flibio/economylite/CauseFactory.java index cba7f7a..03def1f 100644 --- a/src/main/java/io/github/flibio/economylite/CauseFactory.java +++ b/src/main/java/io/github/flibio/economylite/CauseFactory.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite; diff --git a/src/main/java/io/github/flibio/economylite/EconomyLite.java b/src/main/java/io/github/flibio/economylite/EconomyLite.java index 17b08d9..59d6aaf 100644 --- a/src/main/java/io/github/flibio/economylite/EconomyLite.java +++ b/src/main/java/io/github/flibio/economylite/EconomyLite.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite; diff --git a/src/main/java/io/github/flibio/economylite/PluginInfo.java b/src/main/java/io/github/flibio/economylite/PluginInfo.java index 88dd7fb..9a32b8a 100644 --- a/src/main/java/io/github/flibio/economylite/PluginInfo.java +++ b/src/main/java/io/github/flibio/economylite/PluginInfo.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite; diff --git a/src/main/java/io/github/flibio/economylite/TextUtils.java b/src/main/java/io/github/flibio/economylite/TextUtils.java index 9e3fd9c..316b0fb 100644 --- a/src/main/java/io/github/flibio/economylite/TextUtils.java +++ b/src/main/java/io/github/flibio/economylite/TextUtils.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite; diff --git a/src/main/java/io/github/flibio/economylite/api/CurrencyEconService.java b/src/main/java/io/github/flibio/economylite/api/CurrencyEconService.java index f5ccc0a..8d833d6 100644 --- a/src/main/java/io/github/flibio/economylite/api/CurrencyEconService.java +++ b/src/main/java/io/github/flibio/economylite/api/CurrencyEconService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.api; diff --git a/src/main/java/io/github/flibio/economylite/api/PlayerEconService.java b/src/main/java/io/github/flibio/economylite/api/PlayerEconService.java index 9bb7708..e3d64fb 100644 --- a/src/main/java/io/github/flibio/economylite/api/PlayerEconService.java +++ b/src/main/java/io/github/flibio/economylite/api/PlayerEconService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.api; diff --git a/src/main/java/io/github/flibio/economylite/api/VirtualEconService.java b/src/main/java/io/github/flibio/economylite/api/VirtualEconService.java index 998b2c7..9bcb08f 100644 --- a/src/main/java/io/github/flibio/economylite/api/VirtualEconService.java +++ b/src/main/java/io/github/flibio/economylite/api/VirtualEconService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.api; diff --git a/src/main/java/io/github/flibio/economylite/bstats/Metrics.java b/src/main/java/io/github/flibio/economylite/bstats/Metrics.java index 3342922..3af61e3 100644 --- a/src/main/java/io/github/flibio/economylite/bstats/Metrics.java +++ b/src/main/java/io/github/flibio/economylite/bstats/Metrics.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.bstats; diff --git a/src/main/java/io/github/flibio/economylite/commands/MigrateCommand.java b/src/main/java/io/github/flibio/economylite/commands/MigrateCommand.java index 9a06da2..dc6624c 100644 --- a/src/main/java/io/github/flibio/economylite/commands/MigrateCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/MigrateCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands; diff --git a/src/main/java/io/github/flibio/economylite/commands/PayCommand.java b/src/main/java/io/github/flibio/economylite/commands/PayCommand.java index 46ffb75..a0dfd33 100644 --- a/src/main/java/io/github/flibio/economylite/commands/PayCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/PayCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands; diff --git a/src/main/java/io/github/flibio/economylite/commands/admin/AddCommand.java b/src/main/java/io/github/flibio/economylite/commands/admin/AddCommand.java index 2873ce6..fa1664a 100644 --- a/src/main/java/io/github/flibio/economylite/commands/admin/AddCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/admin/AddCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.admin; diff --git a/src/main/java/io/github/flibio/economylite/commands/admin/EconCommand.java b/src/main/java/io/github/flibio/economylite/commands/admin/EconCommand.java index 1a5a005..a51aff1 100644 --- a/src/main/java/io/github/flibio/economylite/commands/admin/EconCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/admin/EconCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.admin; diff --git a/src/main/java/io/github/flibio/economylite/commands/admin/RemoveCommand.java b/src/main/java/io/github/flibio/economylite/commands/admin/RemoveCommand.java index 5e08495..819b450 100644 --- a/src/main/java/io/github/flibio/economylite/commands/admin/RemoveCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/admin/RemoveCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.admin; diff --git a/src/main/java/io/github/flibio/economylite/commands/admin/SetAllCommand.java b/src/main/java/io/github/flibio/economylite/commands/admin/SetAllCommand.java index f148c50..ee6b80d 100644 --- a/src/main/java/io/github/flibio/economylite/commands/admin/SetAllCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/admin/SetAllCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.admin; diff --git a/src/main/java/io/github/flibio/economylite/commands/admin/SetCommand.java b/src/main/java/io/github/flibio/economylite/commands/admin/SetCommand.java index 767d828..0dcc942 100644 --- a/src/main/java/io/github/flibio/economylite/commands/admin/SetCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/admin/SetCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.admin; diff --git a/src/main/java/io/github/flibio/economylite/commands/balance/BalTopCommand.java b/src/main/java/io/github/flibio/economylite/commands/balance/BalTopCommand.java index 85e41aa..15c82a3 100644 --- a/src/main/java/io/github/flibio/economylite/commands/balance/BalTopCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/balance/BalTopCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.balance; diff --git a/src/main/java/io/github/flibio/economylite/commands/balance/BalanceCommand.java b/src/main/java/io/github/flibio/economylite/commands/balance/BalanceCommand.java index 0f5a2c5..03116b6 100644 --- a/src/main/java/io/github/flibio/economylite/commands/balance/BalanceCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/balance/BalanceCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.balance; diff --git a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCommand.java b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCommand.java index 2878025..7c2ee86 100644 --- a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.currency; diff --git a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCreateCommand.java b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCreateCommand.java index 9ed9045..6245597 100644 --- a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCreateCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyCreateCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.currency; diff --git a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyDeleteCommand.java b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyDeleteCommand.java index 0241a7c..7e484e6 100644 --- a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyDeleteCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencyDeleteCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.currency; diff --git a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencySetCommand.java b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencySetCommand.java index d28ba9b..ddbe3d0 100644 --- a/src/main/java/io/github/flibio/economylite/commands/currency/CurrencySetCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/currency/CurrencySetCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.currency; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/PayVirtualCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/PayVirtualCommand.java index 52bbcf7..d6c5ddd 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/PayVirtualCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/PayVirtualCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualAddCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualAddCommand.java index ba86398..720caaf 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualAddCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualAddCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualBalanceCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualBalanceCommand.java index 4fbab9e..1eb6664 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualBalanceCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualBalanceCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualEconCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualEconCommand.java index 3e3f95c..a89bb1c 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualEconCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualEconCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualPayCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualPayCommand.java index 5d9a9e5..b8151b3 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualPayCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualPayCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualRemoveCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualRemoveCommand.java index cf4d6ae..297cabd 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualRemoveCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualRemoveCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualSetCommand.java b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualSetCommand.java index 9d624a4..f24ec38 100644 --- a/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualSetCommand.java +++ b/src/main/java/io/github/flibio/economylite/commands/virtual/VirtualSetCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.commands.virtual; diff --git a/src/main/java/io/github/flibio/economylite/impl/CurrencyService.java b/src/main/java/io/github/flibio/economylite/impl/CurrencyService.java index 3e41204..b82f32a 100644 --- a/src/main/java/io/github/flibio/economylite/impl/CurrencyService.java +++ b/src/main/java/io/github/flibio/economylite/impl/CurrencyService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl; diff --git a/src/main/java/io/github/flibio/economylite/impl/PlayerDataService.java b/src/main/java/io/github/flibio/economylite/impl/PlayerDataService.java index 4506a1a..3c04afe 100644 --- a/src/main/java/io/github/flibio/economylite/impl/PlayerDataService.java +++ b/src/main/java/io/github/flibio/economylite/impl/PlayerDataService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl; diff --git a/src/main/java/io/github/flibio/economylite/impl/PlayerServiceCommon.java b/src/main/java/io/github/flibio/economylite/impl/PlayerServiceCommon.java index e597a42..4df7b0d 100644 --- a/src/main/java/io/github/flibio/economylite/impl/PlayerServiceCommon.java +++ b/src/main/java/io/github/flibio/economylite/impl/PlayerServiceCommon.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl; diff --git a/src/main/java/io/github/flibio/economylite/impl/VirtualDataService.java b/src/main/java/io/github/flibio/economylite/impl/VirtualDataService.java index 3da5fc7..6a1ee11 100644 --- a/src/main/java/io/github/flibio/economylite/impl/VirtualDataService.java +++ b/src/main/java/io/github/flibio/economylite/impl/VirtualDataService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl; diff --git a/src/main/java/io/github/flibio/economylite/impl/VirtualServiceCommon.java b/src/main/java/io/github/flibio/economylite/impl/VirtualServiceCommon.java index e9ee76e..85fb479 100644 --- a/src/main/java/io/github/flibio/economylite/impl/VirtualServiceCommon.java +++ b/src/main/java/io/github/flibio/economylite/impl/VirtualServiceCommon.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/LiteCurrency.java b/src/main/java/io/github/flibio/economylite/impl/economy/LiteCurrency.java index 8f4d605..dc201cd 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/LiteCurrency.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/LiteCurrency.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/LiteEconomyService.java b/src/main/java/io/github/flibio/economylite/impl/economy/LiteEconomyService.java index 4325c67..1f797f5 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/LiteEconomyService.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/LiteEconomyService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteUniqueAccount.java b/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteUniqueAccount.java index ee69a3b..103a38c 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteUniqueAccount.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteUniqueAccount.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.account; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteVirtualAccount.java b/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteVirtualAccount.java index bf5ae21..d4b16f3 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteVirtualAccount.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/account/LiteVirtualAccount.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.account; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/event/LiteEconomyTransactionEvent.java b/src/main/java/io/github/flibio/economylite/impl/economy/event/LiteEconomyTransactionEvent.java index ac51412..ebe6ae6 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/event/LiteEconomyTransactionEvent.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/event/LiteEconomyTransactionEvent.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.event; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/registry/CurrencyRegistryModule.java b/src/main/java/io/github/flibio/economylite/impl/economy/registry/CurrencyRegistryModule.java index cb104ab..9307f68 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/registry/CurrencyRegistryModule.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/registry/CurrencyRegistryModule.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.registry; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransactionResult.java b/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransactionResult.java index 78a64cb..eb62c2e 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransactionResult.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransactionResult.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.result; diff --git a/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransferResult.java b/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransferResult.java index 4d606ea..9b2fde6 100644 --- a/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransferResult.java +++ b/src/main/java/io/github/flibio/economylite/impl/economy/result/LiteTransferResult.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.impl.economy.result; diff --git a/src/main/java/io/github/flibio/economylite/modules/Module.java b/src/main/java/io/github/flibio/economylite/modules/Module.java index 2406e21..5745c39 100644 --- a/src/main/java/io/github/flibio/economylite/modules/Module.java +++ b/src/main/java/io/github/flibio/economylite/modules/Module.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules; diff --git a/src/main/java/io/github/flibio/economylite/modules/business/BusinessModule.java b/src/main/java/io/github/flibio/economylite/modules/business/BusinessModule.java index eba1b9c..ebe1de2 100644 --- a/src/main/java/io/github/flibio/economylite/modules/business/BusinessModule.java +++ b/src/main/java/io/github/flibio/economylite/modules/business/BusinessModule.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.business; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/LoanListener.java b/src/main/java/io/github/flibio/economylite/modules/loan/LoanListener.java index bec38c3..58deaf9 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/LoanListener.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/LoanListener.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/LoanManager.java b/src/main/java/io/github/flibio/economylite/modules/loan/LoanManager.java index 3afd3a0..2332bfd 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/LoanManager.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/LoanManager.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/LoanModule.java b/src/main/java/io/github/flibio/economylite/modules/loan/LoanModule.java index 5a6654a..cf51668 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/LoanModule.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/LoanModule.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/LoanTextUtils.java b/src/main/java/io/github/flibio/economylite/modules/loan/LoanTextUtils.java index a4b290a..c696e27 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/LoanTextUtils.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/LoanTextUtils.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanAcceptCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanAcceptCommand.java index c0f758d..42e7353 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanAcceptCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanAcceptCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanBalanceCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanBalanceCommand.java index 1a04c35..cf8d258 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanBalanceCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanBalanceCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanCommand.java index 2c1c87e..f7bbd3e 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanDenyCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanDenyCommand.java index bf89594..bcd9afa 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanDenyCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanDenyCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanPayCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanPayCommand.java index a608e11..fb58938 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanPayCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanPayCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanTakeCommand.java b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanTakeCommand.java index b63e0ea..8ea6183 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanTakeCommand.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/command/LoanTakeCommand.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.command; diff --git a/src/main/java/io/github/flibio/economylite/modules/loan/event/LoanBalanceChangeEvent.java b/src/main/java/io/github/flibio/economylite/modules/loan/event/LoanBalanceChangeEvent.java index e5fcc70..a4a13e3 100644 --- a/src/main/java/io/github/flibio/economylite/modules/loan/event/LoanBalanceChangeEvent.java +++ b/src/main/java/io/github/flibio/economylite/modules/loan/event/LoanBalanceChangeEvent.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.loan.event; diff --git a/src/main/java/io/github/flibio/economylite/modules/sql/PlayerSqlService.java b/src/main/java/io/github/flibio/economylite/modules/sql/PlayerSqlService.java index 1b7b5a2..945294a 100644 --- a/src/main/java/io/github/flibio/economylite/modules/sql/PlayerSqlService.java +++ b/src/main/java/io/github/flibio/economylite/modules/sql/PlayerSqlService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.sql; diff --git a/src/main/java/io/github/flibio/economylite/modules/sql/SqlModule.java b/src/main/java/io/github/flibio/economylite/modules/sql/SqlModule.java index 952ac21..e7f1cf8 100644 --- a/src/main/java/io/github/flibio/economylite/modules/sql/SqlModule.java +++ b/src/main/java/io/github/flibio/economylite/modules/sql/SqlModule.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.sql; diff --git a/src/main/java/io/github/flibio/economylite/modules/sql/VirtualSqlService.java b/src/main/java/io/github/flibio/economylite/modules/sql/VirtualSqlService.java index e795370..d02d1d6 100644 --- a/src/main/java/io/github/flibio/economylite/modules/sql/VirtualSqlService.java +++ b/src/main/java/io/github/flibio/economylite/modules/sql/VirtualSqlService.java @@ -1,26 +1,5 @@ /* - * This file is part of EconomyLite, licensed under the MIT License (MIT). - * - * Copyright (c) 2015 - 2018 Flibio - * Copyright (c) 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. + * This file is part of EconomyLite, licensed under the MIT License (MIT). See the LICENSE file at the root of this project for more information. */ package io.github.flibio.economylite.modules.sql; diff --git a/src/main/resources/messages.properties b/src/main/resources/messages.properties index aab5a55..cd2551c 100644 --- a/src/main/resources/messages.properties +++ b/src/main/resources/messages.properties @@ -1,28 +1,3 @@ -# -# This file is part of EconomyLite, licensed under the MIT License (MIT). -# -# Copyright (c) 2015 - 2018 Flibio -# Copyright (c) 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. -# - command.usage=&aUsage: &f{command} {subcommands} command.noperm=&cYou do not have permission to run this command! command.invalidsource=&cYou must be a {sourcetype} to use this command!