3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 03:15:50 +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

@ -86,7 +86,6 @@ public class Context extends IDisposable
**/
public BoolSort BoolSort() throws Z3Exception
{
if (m_boolSort == null)
m_boolSort = new BoolSort(this);
return m_boolSort;
@ -97,7 +96,6 @@ public class Context extends IDisposable
**/
public IntSort IntSort() throws Z3Exception
{
if (m_intSort == null)
m_intSort = new IntSort(this);
return m_intSort;
@ -106,8 +104,10 @@ public class Context extends IDisposable
/**
* Retrieves the Real sort of the context.
**/
public RealSort RealSort()
public RealSort RealSort() throws Z3Exception
{
if (m_realSort== null)
m_realSort = new RealSort(this);
return m_realSort;
}