From fbf67f2cdc36d01696de4c516684c76fc3c30c0e Mon Sep 17 00:00:00 2001 From: Peter van 't Hof <p.j.van_t_hof@lumc.nl> Date: Wed, 11 Feb 2015 17:06:27 +0100 Subject: [PATCH] Add notes --- .../nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala b/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala index ba0429fd3..19940fde2 100644 --- a/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala +++ b/public/biopet-framework/src/test/scala/nl/lumc/sasc/biopet/core/config/ConfigurableTest.scala @@ -54,11 +54,13 @@ class ClassA(val root: Configurable) extends Cfg class ClassB(val root: Configurable) extends Cfg { lazy val classA = new ClassA(this) + // Why this needs to be lazy? } class ClassC(val root: Configurable) extends Cfg { def this() = this(null) lazy val classB = new ClassB(this) + // Why this needs to be lazy? } object ConfigurableTest { -- GitLab