1
0
forked from GitHub/gf-core

make the Expr constructor private

This commit is contained in:
kr.angelov
2013-08-28 07:09:31 +00:00
parent 5a24be9735
commit 1c7a64acee

View File

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