make the Expr constructor private

This commit is contained in:
kr.angelov
2013-08-28 07:09:31 +00:00
parent cc259fea43
commit 0efde1e2b0

View File

@@ -4,7 +4,7 @@ public class Expr {
private Pool pool;
private long ref;
public Expr(Pool pool, long ref) {
private Expr(Pool pool, long ref) {
this.pool = pool;
this.ref = ref;
}