aboutsummaryrefslogtreecommitdiff
path: root/stage1/Stage1Lib.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/Stage1Lib.scala')
-rw-r--r--stage1/Stage1Lib.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/Stage1Lib.scala b/stage1/Stage1Lib.scala
index 6a8a0ba..9c204ae 100644
--- a/stage1/Stage1Lib.scala
+++ b/stage1/Stage1Lib.scala
@@ -46,7 +46,7 @@ class Stage1Lib( val logger: Logger ) extends BaseLib{
/** Create instance of the given class via reflection */
def create(cls: String)(args: Any*)(classLoader: ClassLoader): Any = {
- logger.composition( logger.showInvocation("Stage1Lib.create", (classLoader,cls,args)) )
+ logger.composition( logger.showInvocation("Stage1Lib.create", (cls,args,classLoader)) )
import scala.reflect.runtime.universe._
val m = runtimeMirror(classLoader)
val sym = m.classSymbol(classLoader.loadClass(cls))