Made cg & partialRoots fields, as well as the

constructor protected instead of private.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2097 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
loginov 2007-12-05 03:29:31 +00:00
parent 1821e542df
commit d394f8c558
1 changed files with 3 additions and 3 deletions

View File

@ -41,11 +41,11 @@ import com.ibm.wala.util.intset.MutableIntSet;
*/
public class PartialCallGraph extends DelegatingGraph<CGNode> implements CallGraph {
private final CallGraph cg;
protected final CallGraph cg;
private final Collection<CGNode> partialRoots;
protected final Collection<CGNode> partialRoots;
private PartialCallGraph(CallGraph cg, Collection<CGNode> partialRoots, Graph<CGNode> partialGraph) {
protected PartialCallGraph(CallGraph cg, Collection<CGNode> partialRoots, Graph<CGNode> partialGraph) {
super(partialGraph);
this.cg = cg;
this.partialRoots = partialRoots;