make a method protected

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2984 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
msridhar1 2008-08-13 13:56:09 +00:00
parent a57e381b47
commit 69be5f43c7
1 changed files with 2 additions and 2 deletions

View File

@ -373,8 +373,8 @@ public class TabulationSolver<T, P> {
// [22] for each c /in callers(p)
for (Iterator<? extends T> it = supergraph.getPredNodes(edge.entry); it.hasNext();) {
final T c = it.next();
final int cNum = supergraph.getLocalBlockNumber(c);
if (DEBUG_LEVEL > 0) {
final int cNum = supergraph.getLocalBlockNumber(c);
System.err.println("caller: " + c + " " + cNum);
}
@ -879,7 +879,7 @@ public class TabulationSolver<T, P> {
return result;
}
private CallFlowEdges findOrCreateCallFlowEdges(T s_p) {
protected CallFlowEdges findOrCreateCallFlowEdges(T s_p) {
CallFlowEdges result = callFlowEdges.get(s_p);
if (result == null) {
result = new CallFlowEdges();