permanently hidden warning in scala application

后端 未结 10 2156
臣服心动
臣服心动 2021-01-31 14:25

I get the following warning whenever I start my Scala application:

WARN - imported `SVNProperties\' is permanently hidden by definition of object SVNProperties in packag

10条回答
  •  清酒与你
    2021-01-31 15:12

    I encountered this warning after moving some classes from one package to another. I guess there was some conflict between the new location and binaries from the old location. In my case this helped:

    sbt clean
    

提交回复
热议问题