allow direct construction of class hierarchy

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2128 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
yahave 2007-12-08 21:21:24 +00:00
parent 3ecf5850ca
commit 2f0c0072ba
1 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ public abstract class AbstractAnalysisEngine implements AnalysisEngine {
/**
* @return a IClassHierarchy object for this analysis scope
*/
protected IClassHierarchy buildClassHierarchy() {
public IClassHierarchy buildClassHierarchy() {
IClassHierarchy cha = null;
ClassLoaderFactory factory = new ClassLoaderFactoryImpl(getScope().getExclusions() );
try {
@ -206,7 +206,7 @@ public abstract class AbstractAnalysisEngine implements AnalysisEngine {
return cha;
}
protected IClassHierarchy getClassHierarchy() {
public IClassHierarchy getClassHierarchy() {
return cha;
}