Made the constructor protected (was private)

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1056 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
schandra_sf 2007-05-04 19:43:39 +00:00
parent 053eb95444
commit 535bdf4bc9
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class Variable implements ITerm, Comparable<Variable> {
*/
private final IntPair range;
private Variable(int number, IntPair range) {
protected Variable(int number, IntPair range) {
this.number = number;
this.range = range;
}