in project/JavaOptions.scala [7:17]
override def hashCode(): Int =
41 * option.hashCode
override def equals(other: Any): Boolean =
other match {
case that: JavaOption =>
this.option == that.option &&
this.args.size == that.args.size &&
this.args.sorted.zip(that.args.sorted).forall { case (s1, s2) => s1 == s2 }
case _ => false
}