Adding isReady()

This commit is contained in:
Dave
2015-01-05 23:10:40 +02:00
parent df651d96c9
commit 54ca67d27a
4 changed files with 18 additions and 0 deletions

View File

@@ -79,6 +79,12 @@ public final class NoConfigDefault extends NoConfigBase implements Serializable
} catch (ClassNotFoundException e) {
throw new NoDashFatalException("Given bytestream does not compile into a configuration object.", e);
}
this.ready = true;
return noConfig;
}
@Override
public boolean isReady() {
return this.ready;
}
}