Skip to content
Snippets Groups Projects
Commit 33a8edef authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Remove todo

parent 71eb5183
No related branches found
No related tags found
No related merge requests found
......@@ -336,7 +336,6 @@ object ConfigUtils extends Logging {
* @return
*/
implicit def configValue2file(value: ConfigValue): File = {
//TODO: throw IllegalStateException
if (value != null && value.value != null && value.value != None) new File(any2string(value.value))
else throw new IllegalStateException("Value does not exist")
}
......@@ -357,7 +356,6 @@ object ConfigUtils extends Logging {
* @return
*/
implicit def configValue2string(value: ConfigValue): String = {
//TODO: throw IllegalStateException
if (value != null && value.value != null && value.value != None) any2string(value.value)
else throw new IllegalStateException("Value does not exist")
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment