Skip to content

Commit 6f0107d

Browse files
cheestreercosta358
andauthored
Update SMTEvaluator
Follows suggested print formatting Co-authored-by: Ricardo Costa <rcosta.ms358@gmail.com>
1 parent e09836c commit 6f0107d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liquidjava-verifier/src/main/java/liquidjava/smt/SMTEvaluator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class SMTEvaluator {
2727
public SMTResult verifySubtype(Predicate subRef, Predicate supRef, Context context) throws Exception {
2828
Predicate toVerify = Predicate.createConjunction(subRef, supRef.negate());
2929
if (CommandLineLauncher.cmdArgs.debugMode) {
30-
System.out.println("Verifying: " + subRef + " <: " + supRef);
30+
System.out.println(String.format("%s <: %s", subRef, supRef));
3131
}
3232
try {
3333
Expression exp = toVerify.getExpression();

0 commit comments

Comments
 (0)