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

Switch to case class

parent 220d2a7f
No related branches found
No related tags found
No related merge requests found
......@@ -15,15 +15,6 @@
*/
package nl.lumc.sasc.biopet.core.config
class ConfigValueIndex(val module: String, val path: List[String], val key: String, val freeVar: Boolean = true) {
case class ConfigValueIndex(module: String, path: List[String], key: String, freeVar: Boolean = true) {
override def toString = "Module = " + module + ", path = " + path + ", key = " + key + ", freeVar = " + freeVar
}
object ConfigValueIndex {
private var cache: Map[(String, List[String], String), ConfigValueIndex] = Map()
def apply(module: String, path: List[String], key: String, freeVar: Boolean = true): ConfigValueIndex = {
if (!cache.contains(module, path, key)) cache += ((module, path, key) -> new ConfigValueIndex(module, path, key, freeVar))
return cache(module, path, key)
}
}
\ No newline at end of file
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