i downloaded akka source from github. i find that many files have these junk characters in them.
=> converts to ⇒
<- converts to �
trait OnlyCauseStackTrace { self: Throwable ⇒
override def fillInStackTrace(): Throwable = {
setStackTrace(getCause match {
case null ⇒ Array.empty
case some ⇒ some.getStackTrace
})
this
}
}
This is present in every version. akka-master, akka-releasing-2.2-M2 , akka-release-2.1
these give error when i import the code into eclipse after generating an eclipse project from sbt
How i download: i download the zip
file from github website. i cannot use eclipse to import from github as i am behind a firewall.