Correct data constructor for CrossVersion.binaryMapping. Fixes #716.

This commit is contained in:
Mark Harrah 2013-03-27 09:17:54 -04:00
parent 8b68e0f09e
commit dce2853ae7
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ object CrossVersion
def fullMapped(remapVersion: String => String): CrossVersion = new Full(remapVersion)
def binary: CrossVersion = new Binary(idFun)
def binaryMapped(remapVersion: String => String): CrossVersion = new Full(remapVersion)
def binaryMapped(remapVersion: String => String): CrossVersion = new Binary(remapVersion)
private[this] def idFun[T]: T => T = x => x
def append(s: String): Option[String => String] = Some(x => crossName(x, s))