Formatting

This commit is contained in:
Alexandre Archambault 2015-07-06 01:48:25 +01:00
parent 25c5c938c6
commit d7696cc445
1 changed files with 5 additions and 5 deletions

View File

@ -188,11 +188,11 @@ case class Files(
checksum.fold(res) { sumType =>
res
.flatMap{
case err @ -\/(_) => Task.now(err)
case \/-(f) =>
validateChecksum(artifact, sumType)
.map(_.map(_ => f))
}
case err @ -\/(_) => Task.now(err)
case \/-(f) =>
validateChecksum(artifact, sumType)
.map(_.map(_ => f))
}
}
}