Changed visibility of constructor to allow subclassing.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2298 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
schandra_sf 2008-01-05 17:31:56 +00:00
parent b0bb2aa76d
commit d9b0df4c1b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class ExplodedInterproceduralCFG extends AbstractInterproceduralCFG<Explo
return new ExplodedInterproceduralCFG(CG);
}
private ExplodedInterproceduralCFG(CallGraph CG) {
protected ExplodedInterproceduralCFG(CallGraph CG) {
super(CG);
}