Commit b3860caf authored by Carlos Galindo's avatar Carlos Galindo
Browse files

Bugfix: ICFG#cfgMap should not be static

parent cc667a8b
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ import static es.upv.mist.slicing.util.SingletonCollector.toSingleton;
 */
public class ICFG extends Graph implements Buildable<NodeList<CompilationUnit>> {

    protected static final Map<CallableDeclaration<?>, CFG> cfgMap = ASTUtils.newIdentityHashMap();
    protected final Map<CallableDeclaration<?>, CFG> cfgMap = ASTUtils.newIdentityHashMap();
    protected CallGraph callGraph;
    protected boolean built = false;