Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit aedd4e2

Browse files
committed
Cleanup commit, removing commented code
1 parent 43086fe commit aedd4e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/src/main/scala/pickling/Tools.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ class Tools[C <: Context](val c: C) {
8282
// NOTE: only looking for classes defined in objects or top-level classes!
8383
case PackageDef(_, stats) => stats.foreach(loop)
8484
case cdef: ClassDef => analyze(cdef.symbol)
85-
case mdef: ModuleDef => // analyze(mdef.symbol.asModule.moduleClass)
86-
mdef.impl.body.foreach(loop)
85+
case mdef: ModuleDef => mdef.impl.body.foreach(loop)
8786
case _ => // do nothing
8887
}
8988
c.enclosingRun.units.map(_.body).foreach(loop)

0 commit comments

Comments
 (0)