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)
|
||||
Relations.make(srcProd, binaryDep, memberRefSrcDeps, inheritanceSrcDeps, classes, names)
|
||||
else {
|
||||
assert(names.all.isEmpty, s"When `nameHashing` is disabled `names` relation " +
|
||||
"should be empty: $names")
|
||||
assert(names.all.isEmpty, "When `nameHashing` is disabled `names` relation " +
|
||||
s"should be empty: $names")
|
||||
Relations.make(srcProd, binaryDep, directSrcDeps, publicInheritedSrcDeps, classes)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue