Move cache to utils

This commit is contained in:
Bea 2022-10-22 16:12:46 +02:00
parent ca1dc7c0b1
commit 175444970e
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ package wtf.beatrice.nounspicker.commands.subcommands;
import org.bukkit.command.CommandSender;
import org.jetbrains.annotations.NotNull;
import wtf.beatrice.nounspicker.objects.Cache;
import wtf.beatrice.nounspicker.utils.Cache;
public class NounsSetSubCommand
{

View File

@ -1,4 +1,4 @@
package wtf.beatrice.nounspicker.objects;
package wtf.beatrice.nounspicker.utils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;