Merge pull request #19 from DanilaFe/fix-loading

Fix exception during startup if configuration is missing.
This commit is contained in:
Danila Fedorin 2017-09-11 19:32:17 -07:00 committed by GitHub
commit f0efae21be
1 changed files with 3 additions and 1 deletions

View File

@ -45,7 +45,9 @@ class ExtendedConfiguration(var computationDelay: Double = 0.0,
* @param tomlFile the file from disk to load.
*/
constructor(tomlFile: File) : this() {
copyFrom(Toml(DEFAULT_TOML_READER).read(tomlFile).to(ExtendedConfiguration::class.java))
val toml = Toml(DEFAULT_TOML_READER)
if(tomlFile.exists()) toml.read(tomlFile)
copyFrom(toml.to(ExtendedConfiguration::class.java))
}
/**