Remove excess quotation mark

This commit is contained in:
Josh Soref 2019-10-17 14:19:20 -04:00 committed by GitHub
parent 066307998f
commit c7bf1a37f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ private[sbt] object LibraryManagement {
val cachedResolve = Tracked.lastOutput[UpdateInputs, UpdateReport](cache) {
case (_, Some(out)) if upToDate(inChanged, out) => markAsCached(out)
case pair =>
log.debug(s""""not up to date. inChanged = $inChanged, force = $force""")
log.debug(s"""not up to date. inChanged = $inChanged, force = $force""")
resolve
}
import scala.util.control.Exception.catching