Merge pull request #5197 from jsoref/patch-1

Remove excess quotation mark
This commit is contained in:
eugene yokota 2019-10-17 15:47:47 -04:00 committed by GitHub
commit e4ee8d4a7f
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