Move Logger and PlaceholderAPI integration.

This commit is contained in:
Aust1n46 2022-05-01 18:06:34 -05:00
parent 6e79fcedf1
commit cc791c2dae
5 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,6 @@ import com.google.inject.Injector;
import com.google.inject.Singleton;
import net.milkbowl.vault.permission.Permission;
import venture.Aust1n46.chat.VentureChatPlaceholders;
import venture.Aust1n46.chat.controllers.CommandController;
import venture.Aust1n46.chat.controllers.PluginMessageController;
import venture.Aust1n46.chat.controllers.VentureChatSpigotFlatFileController;
@ -28,6 +27,7 @@ import venture.Aust1n46.chat.initiators.listeners.PreProcessCommandListener;
import venture.Aust1n46.chat.initiators.listeners.SignListener;
import venture.Aust1n46.chat.initiators.schedulers.UnmuteScheduler;
import venture.Aust1n46.chat.localization.Localization;
import venture.Aust1n46.chat.placeholderapi.VentureChatPlaceholders;
import venture.Aust1n46.chat.service.VentureChatPlayerApiService;
import venture.Aust1n46.chat.utilities.FormatUtils;

View File

@ -12,7 +12,6 @@ import org.bukkit.event.player.PlayerQuitEvent;
import com.google.inject.Inject;
import com.google.inject.Singleton;
import venture.Aust1n46.chat.Logger;
import venture.Aust1n46.chat.controllers.PluginMessageController;
import venture.Aust1n46.chat.controllers.VentureChatSpigotFlatFileController;
import venture.Aust1n46.chat.initiators.application.VentureChat;
@ -23,6 +22,7 @@ import venture.Aust1n46.chat.service.ConfigService;
import venture.Aust1n46.chat.service.UUIDService;
import venture.Aust1n46.chat.service.VentureChatPlayerApiService;
import venture.Aust1n46.chat.utilities.FormatUtils;
import venture.Aust1n46.chat.xcut.Logger;
/**
* Manages player login and logout events.

View File

@ -1,4 +1,4 @@
package venture.Aust1n46.chat;
package venture.Aust1n46.chat.placeholderapi;
import org.bukkit.entity.Player;

View File

@ -1,4 +1,4 @@
package venture.Aust1n46.chat;
package venture.Aust1n46.chat.xcut;
import org.slf4j.LoggerFactory;

View File

@ -12,7 +12,6 @@ import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import venture.Aust1n46.chat.Logger;
import venture.Aust1n46.chat.controllers.PluginMessageController;
import venture.Aust1n46.chat.controllers.VentureChatSpigotFlatFileController;
import venture.Aust1n46.chat.initiators.application.VentureChat;
@ -21,6 +20,7 @@ import venture.Aust1n46.chat.model.VentureChatPlayer;
import venture.Aust1n46.chat.service.ConfigService;
import venture.Aust1n46.chat.service.UUIDService;
import venture.Aust1n46.chat.service.VentureChatPlayerApiService;
import venture.Aust1n46.chat.xcut.Logger;
@ExtendWith(MockitoExtension.class)
public class LoginListenerTest {