Fixes #1599: Removes preconditions for world data and children

This commit is contained in:
thatsIch
2015-06-15 15:52:11 +02:00
parent 863b57fc3b
commit 07a4a8505b
7 changed files with 11 additions and 34 deletions
@@ -57,7 +57,6 @@ public final class CompassService
public CompassService( @Nonnull final File worldCompassFolder, @Nonnull final ThreadFactory factory )
{
Preconditions.checkNotNull( worldCompassFolder );
Preconditions.checkArgument( worldCompassFolder.isDirectory() );
this.worldCompassFolder = worldCompassFolder;
this.executor = Executors.newSingleThreadExecutor( factory );