Archived
0

optimize imports

This commit is contained in:
2018-08-12 19:23:32 +03:00
parent a8480e39ec
commit 86f22ffc76
13 changed files with 23 additions and 16 deletions

View File

@@ -7,9 +7,8 @@ package mc.core;
import com.google.common.eventbus.Subscribe;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import mc.core.events.EventBusGetter;
import mc.core.events.CS_PlayerMoveEvent;
import mc.core.events.SC_PlayerMoveEvent;
import mc.core.events.EventBusGetter;
import mc.core.player.PlayerManager;
import mc.core.time.TimeProcessor;
import org.springframework.beans.factory.annotation.Autowired;

View File

@@ -9,10 +9,8 @@ import mc.core.network.Server;
import mc.core.network.StartServerException;
import org.apache.commons.io.IOUtils;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;

View File

@@ -8,7 +8,6 @@ import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import mc.core.EntityLocation;
import mc.core.Location;
import mc.core.player.Player;
@RequiredArgsConstructor

View File

@@ -1,7 +1,7 @@
package mc.core.serialization;
import mc.core.world.chunk.ChunkSection;
import mc.core.world.Region;
import mc.core.world.chunk.ChunkSection;
import java.io.IOException;

View File

@@ -1,10 +1,10 @@
package mc.core;
import com.flowpowered.nbt.Tag;
import mc.core.world.chunk.ChunkSection;
import mc.core.world.IWorldType;
import mc.core.world.Region;
import mc.core.world.World;
import mc.core.world.chunk.ChunkSection;
import org.junit.Assert;
import org.junit.Test;