Skip to content

Commit

Permalink
build(deps): update dependency org.jgrapht:jgrapht-core to v1 (#5961)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 9, 2024
1 parent 594b2d8 commit f4adccd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion spoon-control-flow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<dependency>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht-core</artifactId>
<version>0.9.2</version>
<version>1.5.2</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
package fr.inria.controlflow;

import org.jgrapht.DirectedGraph;
import org.jgrapht.Graph;
import spoon.reflect.code.CtStatement;
import spoon.reflect.declaration.CtElement;
import spoon.reflect.visitor.CtVisitor;
Expand All @@ -41,18 +41,18 @@ public abstract class TransferFunctionVisitor implements CtVisitor {
/**
* Control graph over the data flow is being exists
*/
DirectedGraph<CtStatement, CtStatement> controlGraph;
Graph<CtStatement, CtStatement> controlGraph;

/**
* Outputs of the statement calling the transfer.
*/
protected List<Value> output;

public DirectedGraph<CtStatement, CtStatement> getControlGraph() {
public Graph<CtStatement, CtStatement> getControlGraph() {
return controlGraph;
}

public void setControlGraph(DirectedGraph<CtStatement, CtStatement> controlGraph) {
public void setControlGraph(Graph<CtStatement, CtStatement> controlGraph) {
this.controlGraph = controlGraph;
}

Expand Down

0 comments on commit f4adccd

Please sign in to comment.