3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-08 08:51:55 +00:00

Java API: bugfixes

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2012-11-28 22:20:36 +00:00
parent 1ed4e7c480
commit bbfd9dd19f
3 changed files with 14 additions and 14 deletions

View file

@ -1786,8 +1786,6 @@ public class Expr extends AST
return new RatNum(ctx, obj);
case Z3_BV_SORT:
return new BitVecNum(ctx, obj);
case Z3_UNKNOWN_SORT:
throw new Z3Exception("Unknown Sort");
default: ;
}
}
@ -1806,8 +1804,6 @@ public class Expr extends AST
return new ArrayExpr(ctx, obj);
case Z3_DATATYPE_SORT:
return new DatatypeExpr(ctx, obj);
case Z3_UNKNOWN_SORT:
throw new Z3Exception("Unknown Sort");
default: ;
}