Skip to content

Commit d355b7a

Browse files
committed
moved class
1 parent d06a1c4 commit d355b7a

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

src/main/java/lol/hyper/toolstats/commands/CommandToolStats.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package lol.hyper.toolstats.commands;
1919

2020
import lol.hyper.toolstats.ToolStats;
21-
import lol.hyper.toolstats.UUIDDataType;
21+
import lol.hyper.toolstats.tools.UUIDDataType;
2222
import net.kyori.adventure.platform.bukkit.BukkitAudiences;
2323
import net.kyori.adventure.text.Component;
2424
import net.kyori.adventure.text.format.NamedTextColor;

src/main/java/lol/hyper/toolstats/events/CraftItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package lol.hyper.toolstats.events;
1919

2020
import lol.hyper.toolstats.ToolStats;
21-
import lol.hyper.toolstats.UUIDDataType;
21+
import lol.hyper.toolstats.tools.UUIDDataType;
2222
import org.bukkit.ChatColor;
2323
import org.bukkit.GameMode;
2424
import org.bukkit.Material;

src/main/java/lol/hyper/toolstats/events/PickupItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package lol.hyper.toolstats.events;
1919

2020
import lol.hyper.toolstats.ToolStats;
21-
import lol.hyper.toolstats.UUIDDataType;
21+
import lol.hyper.toolstats.tools.UUIDDataType;
2222
import org.bukkit.GameMode;
2323
import org.bukkit.Material;
2424
import org.bukkit.entity.*;

src/main/java/lol/hyper/toolstats/UUIDDataType.java renamed to src/main/java/lol/hyper/toolstats/tools/UUIDDataType.java

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,24 @@
1515
* along with ToolStats. If not, see <https://www.gnu.org/licenses/>.
1616
*/
1717

18-
package lol.hyper.toolstats;
18+
/*
19+
* This file is part of ToolStats.
20+
*
21+
* ToolStats is free software: you can redistribute it and/or modify
22+
* it under the terms of the GNU General Public License as published by
23+
* the Free Software Foundation, either version 3 of the License, or
24+
* (at your option) any later version.
25+
*
26+
* ToolStats is distributed in the hope that it will be useful,
27+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
28+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29+
* GNU General Public License for more details.
30+
*
31+
* You should have received a copy of the GNU General Public License
32+
* along with ToolStats. If not, see <https://www.gnu.org/licenses/>.
33+
*/
34+
35+
package lol.hyper.toolstats.tools;
1936

2037
import org.bukkit.persistence.PersistentDataAdapterContext;
2138
import org.bukkit.persistence.PersistentDataType;

0 commit comments

Comments
 (0)