mirror of https://github.com/sbt/sbt.git
Get rid of MurmurHash.finalizeHash import in HashAPI.
That import is shadowed by the local definition of `finalizeHash` introduced to HashAPI class.
This commit is contained in:
parent
fa220f372a
commit
1bbbbb38c9
|
|
@ -46,7 +46,7 @@ final class HashAPI(includePrivate: Boolean, includeParamNames: Boolean, include
|
|||
}
|
||||
|
||||
import scala.collection.mutable
|
||||
import MurmurHash.{extendHash, finalizeHash, nextMagicA, nextMagicB, startHash, startMagicA, startMagicB, stringHash, symmetricHash}
|
||||
import MurmurHash.{extendHash, nextMagicA, nextMagicB, startHash, startMagicA, startMagicB, stringHash, symmetricHash}
|
||||
|
||||
private[this] val visitedStructures = visitedMap[Structure]
|
||||
private[this] val visitedClassLike = visitedMap[ClassLike]
|
||||
|
|
|
|||
Loading…
Reference in New Issue