Fixes #1995: Allows creation of version checker config file after start up

This commit is contained in:
thatsIch 2015-11-11 21:39:29 +01:00 committed by yueh
parent 9fd183900a
commit 18d10e4cc4
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public final class VersionCheckerConfig
public VersionCheckerConfig( @Nonnull final File file )
{
Preconditions.checkNotNull( file );
Preconditions.checkState( file.isFile() );
Preconditions.checkState( !file.isDirectory() );
this.config = new Configuration( file );