make CallerSiteContext public

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@1807 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2007-09-28 11:25:07 +00:00
parent baef9d1ede
commit c5f97090b0
1 changed files with 2 additions and 2 deletions

View File

@ -19,11 +19,11 @@ import com.ibm.wala.ipa.callgraph.ContextKey;
* @author Julain Dolby (?) * @author Julain Dolby (?)
* *
*/ */
class CallerSiteContext extends CallerContext { public class CallerSiteContext extends CallerContext {
private final CallSiteReference callSite; private final CallSiteReference callSite;
CallerSiteContext(CGNode caller, CallSiteReference callSite) { public CallerSiteContext(CGNode caller, CallSiteReference callSite) {
super(caller); super(caller);
this.callSite = callSite; this.callSite = callSite;
} }