mirror of https://github.com/sbt/sbt.git
Fix typo in assertion message in TextAnalysisFormat
Add missing string interpolation indicator in assertion message.
This commit is contained in:
parent
1d627797d7
commit
668ae8d8b1
|
|
@ -225,8 +225,8 @@ object TextAnalysisFormat {
|
||||||
if (nameHashing)
|
if (nameHashing)
|
||||||
Relations.make(srcProd, binaryDep, memberRefSrcDeps, inheritanceSrcDeps, classes, names)
|
Relations.make(srcProd, binaryDep, memberRefSrcDeps, inheritanceSrcDeps, classes, names)
|
||||||
else {
|
else {
|
||||||
assert(names.all.isEmpty, s"When `nameHashing` is disabled `names` relation " +
|
assert(names.all.isEmpty, "When `nameHashing` is disabled `names` relation " +
|
||||||
"should be empty: $names")
|
s"should be empty: $names")
|
||||||
Relations.make(srcProd, binaryDep, directSrcDeps, publicInheritedSrcDeps, classes)
|
Relations.make(srcProd, binaryDep, directSrcDeps, publicInheritedSrcDeps, classes)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue