tweak some debugging code

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2160 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-12-12 18:22:06 +00:00
parent c09e8b46bc
commit 421ea35de8
1 changed files with 1 additions and 6 deletions

View File

@ -130,7 +130,7 @@ public class ClassHierarchy implements IClassHierarchy {
private Set<IClass> computeSuperclasses(IClass klass) throws ClassHierarchyException {
if (DEBUG) {
Trace.println("computeSuperclasses: " + klass);
System.err.println("computeSuperclasses: " + klass);
}
Set<IClass> result = HashSetFactory.make(3);
@ -147,11 +147,6 @@ public class ClassHierarchy implements IClassHierarchy {
return result;
}
// protected ClassHierarchy(AnalysisScope scope, ClassLoaderFactory factory, IProgressMonitor monitor)
// throws ClassHierarchyException {
// this(scope, factory, Language.JAVA, monitor);
// }
private ClassHierarchy(AnalysisScope scope, ClassLoaderFactory factory, Language language, IProgressMonitor progressMonitor)
throws ClassHierarchyException, IllegalArgumentException {
this(scope, factory, Collections.singleton(language), progressMonitor);