Skip to content

Commit 56da909

Browse files
committed
Updated license header
1 parent 832156c commit 56da909

File tree

11 files changed

+124
-12
lines changed

11 files changed

+124
-12
lines changed

src/main/java/me/despical/commandframework/Command.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* Copyright (c) 2021 - Despical
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1617
*/
1718

1819
package me.despical.commandframework;

src/main/java/me/despical/commandframework/CommandArguments.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* Copyright (c) 2021 - Despical
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1617
*/
1718

1819
package me.despical.commandframework;

src/main/java/me/despical/commandframework/CommandException.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
/**

src/main/java/me/despical/commandframework/CommandFramework.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* Copyright (c) 2021 - Despical
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1617
*/
1718

1819
package me.despical.commandframework;

src/main/java/me/despical/commandframework/Completer.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
2-
* Copyright (c) 2021 - Despical
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
34
*
45
* This program is free software: you can redistribute it and/or modify
56
* it under the terms of the GNU General Public License as published by
@@ -12,7 +13,7 @@
1213
* GNU General Public License for more details.
1314
*
1415
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1617
*/
1718

1819
package me.despical.commandframework;

src/main/java/me/despical/commandframework/CustomParameters.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import java.lang.annotation.ElementType;

src/main/java/me/despical/commandframework/NoCommandArguments.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework;
220

321
import java.lang.annotation.ElementType;

src/main/java/me/despical/commandframework/utils/Utils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Commons - Box of the common utilities.
3-
* Copyright (C) 2023 Despical
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
44
*
55
* This program is free software: you can redistribute it and/or modify
66
* it under the terms of the GNU General Public License as published by
@@ -9,11 +9,11 @@
99
*
1010
* This program is distributed in the hope that it will be useful,
1111
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1313
* GNU General Public License for more details.
1414
*
1515
* You should have received a copy of the GNU General Public License
16-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
package me.despical.commandframework.utils;

src/main/java/me/despical/commandframework/utils/package-info.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
/**
220
* This package is an internal utility package for the framework.
321
*

src/test/java/me/despical/commandframework/test/CommandFrameworkMock.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* Command Framework - Annotation based command framework
3+
* Copyright (C) 2024 Berke Akçen
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
package me.despical.commandframework.test;
220

321
import me.despical.commandframework.CommandFramework;

0 commit comments

Comments
 (0)