Simplify expression

This commit is contained in:
Damian Reeves 2021-11-01 15:09:16 -04:00
parent eeebcc41bf
commit e049021ac0
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ object VirtualAxis {
private[sbt] def isScala2Scala3Sandwich(sbv1: String, sbv2: String): Boolean = {
def compare(a: String, b: String): Boolean =
a == "2.13" && (b.startsWith("0.") || b.startsWith("3.0") || b.startsWith("3.1"))
a == "2.13" && (b.startsWith("0.") || b.startsWith("3."))
compare(sbv1, sbv2) || compare(sbv2, sbv1)
}