I get the following warning whenever I start my Scala application:
WARN - imported `SVNProperties\' is permanently hidden by definition of object SVNProperties in packag
You probably have code that looks something like this:
object Hidden {
import scala.collection.immutable
object immutable { def x = 7 }
}
except in a less obvious way. You're importing something--in my example, the package immutable
--and then you go and define something else with the same name that prevents you from using what you imported.
In particular, it looks like you tried to import SVNProperties
into SVNResource.scala
, except that SVNResource.scala
defines its own SVNProperties
which hides the import.