From 7897159a1c259bdba813fe76a67375c4319f3b5c Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Sun, 20 Nov 2022 12:42:50 -0700 Subject: [PATCH] Update license in examples --- .../examples/bukkit/ExampleCommandContainer.java | 2 +- .../cloud/commandframework/examples/bukkit/ExamplePlugin.java | 2 +- .../main/java/cloud/commandframework/examples/bukkit/Mc113.java | 2 +- .../cloud/commandframework/examples/bungee/ExamplePlugin.java | 2 +- .../java/cloud/commandframework/examples/jda/CustomUser.java | 2 +- .../java/cloud/commandframework/examples/jda/ExampleBot.java | 2 +- .../java/cloud/commandframework/examples/jda/GuildUser.java | 2 +- .../cloud/commandframework/examples/jda/PermissionRegistry.java | 2 +- .../java/cloud/commandframework/examples/jda/PrivateUser.java | 2 +- .../examples/velocity/ExampleVelocityPlugin.java | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExampleCommandContainer.java b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExampleCommandContainer.java index 38eec737..f3030ad7 100644 --- a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExampleCommandContainer.java +++ b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExampleCommandContainer.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExamplePlugin.java b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExamplePlugin.java index bf325ce1..1e36adea 100644 --- a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExamplePlugin.java +++ b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/ExamplePlugin.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/Mc113.java b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/Mc113.java index e8af6779..eaf3c7c0 100644 --- a/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/Mc113.java +++ b/examples/example-bukkit/src/main/java/cloud/commandframework/examples/bukkit/Mc113.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-bungee/src/main/java/cloud/commandframework/examples/bungee/ExamplePlugin.java b/examples/example-bungee/src/main/java/cloud/commandframework/examples/bungee/ExamplePlugin.java index e27a7650..20c9c612 100644 --- a/examples/example-bungee/src/main/java/cloud/commandframework/examples/bungee/ExamplePlugin.java +++ b/examples/example-bungee/src/main/java/cloud/commandframework/examples/bungee/ExamplePlugin.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/CustomUser.java b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/CustomUser.java index d4d529ce..df73cc6b 100644 --- a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/CustomUser.java +++ b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/CustomUser.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/ExampleBot.java b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/ExampleBot.java index 94f97116..2f5ccc00 100644 --- a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/ExampleBot.java +++ b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/ExampleBot.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/GuildUser.java b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/GuildUser.java index 745b011e..6d2577b9 100644 --- a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/GuildUser.java +++ b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/GuildUser.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PermissionRegistry.java b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PermissionRegistry.java index aae01365..79bbcd11 100644 --- a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PermissionRegistry.java +++ b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PermissionRegistry.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PrivateUser.java b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PrivateUser.java index 7a12e80f..54674413 100644 --- a/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PrivateUser.java +++ b/examples/example-jda/src/main/java/cloud/commandframework/examples/jda/PrivateUser.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & Contributors // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/examples/example-velocity/src/main/java/cloud/commandframework/examples/velocity/ExampleVelocityPlugin.java b/examples/example-velocity/src/main/java/cloud/commandframework/examples/velocity/ExampleVelocityPlugin.java index ba665dc9..89f9be69 100644 --- a/examples/example-velocity/src/main/java/cloud/commandframework/examples/velocity/ExampleVelocityPlugin.java +++ b/examples/example-velocity/src/main/java/cloud/commandframework/examples/velocity/ExampleVelocityPlugin.java @@ -1,7 +1,7 @@ // // MIT License // -// Copyright (c) 2021 Alexander Söderberg & Contributors +// Copyright (c) 2022 Alexander Söderberg & 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