3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-13 22:26:14 +00:00

JavaAPI: DecRefQueue -- do not use move_limit for now.

This commit is contained in:
George Karpenkov 2016-06-13 12:18:31 +02:00
parent 26d6c99aac
commit a914822346
20 changed files with 65 additions and 140 deletions

View file

@ -17,20 +17,15 @@ Notes:
package com.microsoft.z3;
class ParamDescrsDecRefQueue extends IDecRefQueue<ParamDescrs>
{
class ParamDescrsDecRefQueue extends IDecRefQueue<ParamDescrs> {
public ParamDescrsDecRefQueue()
{
super();
}
public ParamDescrsDecRefQueue(int move_limit) {
super(move_limit);
}
@Override
protected void decRef(Context ctx, long obj)
{
Native.paramDescrsDecRef(ctx.nCtx(), obj);
}
};
}