Skip to content

Commit ca8ed3a

Browse files
committed
Remove the old config and update the license headers
1 parent 7190b95 commit ca8ed3a

File tree

255 files changed

+352
-618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+352
-618
lines changed

src/commander/java/com/mcmoddev/mmdbot/commander/TheCommander.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/annotation/RegisterSlashCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/cfwebhooks/CFProject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/cfwebhooks/CFProjects.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public
@@ -24,6 +24,7 @@
2424
import com.google.gson.JsonArray;
2525
import com.google.gson.reflect.TypeToken;
2626
import com.google.gson.stream.JsonWriter;
27+
import com.mcmoddev.mmdbot.commander.TheCommander;
2728
import com.mcmoddev.mmdbot.core.util.Constants;
2829
import lombok.extern.slf4j.Slf4j;
2930

@@ -97,7 +98,7 @@ public void load() {
9798
projects = Constants.Gsons.NO_PRETTY_PRINTING.fromJson(reader, typeOfList);
9899
}
99100
} catch (IOException e) {
100-
log.error("Exception while reading CurseForgeProjects file", e);
101+
TheCommander.LOGGER.error("Exception while reading CurseForgeProjects file", e);
101102
}
102103
}
103104

@@ -109,7 +110,7 @@ public void save() {
109110
Constants.Gsons.NO_PRETTY_PRINTING.toJson(projects$, writer);
110111
}
111112
} catch (IOException e) {
112-
log.error("Exception while saving CurseForgeProjects file", e);
113+
TheCommander.LOGGER.error("Exception while saving CurseForgeProjects file", e);
113114
}
114115
}
115116

src/commander/java/com/mcmoddev/mmdbot/commander/cfwebhooks/CFUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/cfwebhooks/CurseForgeManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/cfwebhooks/CurseForgeWebhooksCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/commands/Commands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/commands/CustomPingsCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

src/commander/java/com/mcmoddev/mmdbot/commander/commands/EvaluateCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* MMDBot - https://github.com/MinecraftModDevelopment/MMDBot
3-
* Copyright (C) 2016-2023 <MMD - MinecraftModDevelopment>
3+
* Copyright (C) 2016-2024 <MMD - MinecraftModDevelopment>
44
*
55
* This library is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)