aboutsummaryrefslogtreecommitdiff
path: root/stage2/Stage2.scala
diff options
context:
space:
mode:
authorMatt Farmer <matt@frmr.me>2016-03-05 18:08:07 -0500
committerMatt Farmer <matt@frmr.me>2016-03-05 18:08:07 -0500
commit005f835ef9773e6de8d07d12de01690f95cef20c (patch)
treec2964353ea7db12c148771c786aa76bb2e03c7a3 /stage2/Stage2.scala
parenta2eec03dc502b02908a00eb527bb297d5c91a6d5 (diff)
downloadcbt-005f835ef9773e6de8d07d12de01690f95cef20c.tar.gz
cbt-005f835ef9773e6de8d07d12de01690f95cef20c.tar.bz2
cbt-005f835ef9773e6de8d07d12de01690f95cef20c.zip
Some style cleanups in Stage1.
Diffstat (limited to 'stage2/Stage2.scala')
-rw-r--r--stage2/Stage2.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/stage2/Stage2.scala b/stage2/Stage2.scala
index 05b7c58..44db3ae 100644
--- a/stage2/Stage2.scala
+++ b/stage2/Stage2.scala
@@ -6,7 +6,7 @@ import scala.collection.immutable.Seq
object Stage2{
def main(args: Array[String]) = {
import java.time.LocalTime.now
- val init = new Stage1.Init(args)
+ val init = new Init(args)
import java.time._
val start = LocalTime.now()
def timeTaken = Duration.between(start, LocalTime.now()).toMillis
@@ -18,7 +18,7 @@ object Stage2{
val taskIndex = if(loop || direct) 2 else 1
val task = argsV.lift( taskIndex )
- val lib = new Lib(new Stage1.Init(args).logger)
+ val lib = new Lib(new Init(args).logger)
val context = Context( cwd, argsV.drop( taskIndex + 1 ), logger )
val first = lib.loadRoot( context )