will chossing what classes I want from package will speed up compiling process ? If for example in package me.test I have 50 classess, and I just need two of them and I will do :
import me.test.{ classOne, classTwo}
instead of
import me.test._
? Thanks