Skip to content

Commit 052ea4f

Browse files
author
Eric Bodden
committed
adding generics
1 parent 1b14b7c commit 052ea4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/soot/toolkits/graph/MHGPostDominatorsFinder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
*
2828
* @author Eric Bodden
2929
**/
30-
public class MHGPostDominatorsFinder extends MHGDominatorsFinder
30+
public class MHGPostDominatorsFinder<N> extends MHGDominatorsFinder<N>
3131
{
3232

33-
public MHGPostDominatorsFinder(DirectedGraph graph) {
34-
super(new InverseGraph(graph));
33+
public MHGPostDominatorsFinder(DirectedGraph<N> graph) {
34+
super(new InverseGraph<N>(graph));
3535
}
3636

3737

0 commit comments

Comments
 (0)