mirror of https://github.com/sbt/sbt.git
cleanup of #585: compatible with earlier launchers
This commit is contained in:
parent
bc6770bec3
commit
14057fb211
|
|
@ -89,7 +89,7 @@ final class Patterns(val ivyPatterns: Seq[String], val artifactPatterns: Seq[Str
|
|||
case _ => false
|
||||
}
|
||||
}
|
||||
override def hashCode: Int = 617 * ivyPatterns.## + 37 * artifactPatterns.## + isMavenCompatible.hashCode
|
||||
override def hashCode: Int = (ivyPatterns, artifactPatterns, isMavenCompatible).hashCode
|
||||
}
|
||||
object Patterns
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue