made constructor protected (was private)

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1153 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
schandra_sf 2007-05-20 17:46:24 +00:00
parent 7a5b1b8915
commit 8b9f6df8fe
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import java.util.Collections;
public class IntConstant implements IConstant {
private final int val;
private IntConstant(int val) {
protected IntConstant(int val) {
this.val = val;
}