diff --git a/src/api/java/Context.java b/src/api/java/Context.java index e0df3797b..466047c16 100644 --- a/src/api/java/Context.java +++ b/src/api/java/Context.java @@ -2112,8 +2112,8 @@ public class Context implements AutoCloseable { public BoolExpr MkStringLt(SeqSort s1, SeqSort s2) { - checkContextMatch(s1, s2); - return new BoolExpr(this, Native.mkStrLt(nCtx(), s1.getNativeObject(), s2.getNativeObject())); + checkContextMatch(s1, s2); + return new BoolExpr(this, Native.mkStrLt(nCtx(), s1.getNativeObject(), s2.getNativeObject())); } /** @@ -2121,8 +2121,8 @@ public class Context implements AutoCloseable { */ public BoolExpr MkStringLe(SeqSort s1, SeqSort s2) { - checkContextMatch(s1, s2); - return new BoolExpr(this, Native.mkStrLe(nCtx(), s1.getNativeObject(), s2.getNativeObject())); + checkContextMatch(s1, s2); + return new BoolExpr(this, Native.mkStrLe(nCtx(), s1.getNativeObject(), s2.getNativeObject())); }