Skip to content

Instantly share code, notes, and snippets.

@dmcg
Created November 30, 2018 08:30
Show Gist options
  • Select an option

  • Save dmcg/9478474a3372ad3cdf27f2f4b721f9e3 to your computer and use it in GitHub Desktop.

Select an option

Save dmcg/9478474a3372ad3cdf27f2f4b721f9e3 to your computer and use it in GitHub Desktop.
Konfig ConfigurationProperties from file that may not exist
fun userOverrideProperties(file: File): ConfigurationProperties =
if (file.isFile)
ConfigurationProperties.fromFile(file)
else
ConfigurationProperties(Properties(), Location(file.absolutePath, file.toURI()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment