AFAICT Utils is private:
private[spark] object Utils extends Logging {
So is Logging:
private[spark] trait Logging {
FYI
On Mon, Jun 27, 2016 at 8:20 AM, Paolo Patierno <[email protected]> wrote:
> Hello,
>
> I'm trying to use the Utils.createTempDir() method importing
> org.apache.spark.util.Utils but the scala compiler says me that :
>
> object Utils in package util cannot be accessed in package
> org.apache.spark.util
>
> I'm facing the same problem with Logging.
>
> My sbt file has following dependency :
>
> "org.apache.spark" %% "spark-core" % sparkVersion.value % "provided"
> classifier "tests"
>
> where spark version is "2.0.0-SNAPSHOT".
>
> Any ideas about this problem ?
>
> Thanks,
> Paolo.
>