Skip to content

Commit 5cf176a

Browse files
committed
Fix space in error message
1 parent c3f0d98 commit 5cf176a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/scala/inox/solvers/smtlib/SMTLIBParser.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,7 @@ trait SMTLIBParser {
224224
val MapType(from, to) = fromSMT(sort)
225225
FiniteMap(Seq.empty, d, from, to)
226226

227-
case _ => throw new MissformedSMTException(term,
228-
" Unknown SMT term of class: " + term.getClass
229-
)
227+
case _ => throw new MissformedSMTException(term, "Unknown SMT term of class: " + term.getClass)
230228
}
231229

232230
protected def fromSMT(sort: Sort)(implicit context: Context): Type = sort match {

0 commit comments

Comments
 (0)