make enclosing object keys usable by others

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1579 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2007-08-07 13:47:16 +00:00
parent cb2cee96a7
commit d830347245
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ public class AstJavaSSAPropagationCallGraphBuilder extends AstSSAPropagationCall
public static class EnclosingObjectReferenceKey extends AbstractFieldPointerKey {
private final IClass outer;
private EnclosingObjectReferenceKey(InstanceKey inner, IClass outer) {
public EnclosingObjectReferenceKey(InstanceKey inner, IClass outer) {
super(inner);
this.outer = outer;
}