make constructor protected instead of private so subclasses can call super instead of using static construction method

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1661 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
yahave 2007-08-23 21:52:20 +00:00
parent f5221d5024
commit 26f16be44a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public class ZeroXCFABuilder extends CFABuilder {
private final int instancePolicy;
private ZeroXCFABuilder(IClassHierarchy cha, AnalysisOptions options, AnalysisCache cache, ContextSelector appContextSelector,
protected ZeroXCFABuilder(IClassHierarchy cha, AnalysisOptions options, AnalysisCache cache, ContextSelector appContextSelector,
SSAContextInterpreter appContextInterpreter, ReflectionSpecification reflect, int instancePolicy) {
super(cha, options, cache);