Skip to content

Commit

Permalink
Fix typo in assertion message in TextAnalysisFormat
Browse files Browse the repository at this point in the history
Add missing string interpolation indicator in assertion message.
  • Loading branch information
gkossakowski authored and eed3si9n committed Mar 21, 2014
1 parent 2991652 commit b1471e4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit b1471e4

Please sign in to comment.