mirror of https://github.com/sbt/sbt.git
[2.x] override sbt.Tests.Group hashCode (#9065)
This commit is contained in:
parent
6fe83aa021
commit
767ebec906
|
|
@ -200,6 +200,8 @@ object Tests {
|
|||
new Group(name, tests, runPolicy, tags)
|
||||
}
|
||||
|
||||
override def hashCode(): Int = (name, tests, runPolicy, tags).##
|
||||
|
||||
override def equals(x$1: Any): Boolean = {
|
||||
this.eq(x$1.asInstanceOf[Object]) || (x$1.isInstanceOf[Group] && ({
|
||||
val Group$1: Group = x$1.asInstanceOf[Group]
|
||||
|
|
|
|||
Loading…
Reference in New Issue