cleanup of #585: compatible with earlier launchers

This commit is contained in:
Mark Harrah 2012-10-29 09:52:10 -04:00
parent bc6770bec3
commit 14057fb211
1 changed files with 1 additions and 1 deletions

View File

@ -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
{