Skip to content

Commit 14f9de8

Browse files
committed
fix code formatting
1 parent 374aa46 commit 14f9de8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/soot/toolkits/graph/pdg/HashMutablePDG.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ protected void constructPDG() {
197197
Block b = bItr.next();
198198

199199
if (b.equals(a)) {
200-
//throw new RuntimeException("PDG construction: A and B are not supposed to be the same node!");
201-
continue;
200+
// throw new RuntimeException("PDG construction: A and B are not supposed to be the same node!");
201+
continue;
202202
}
203203

204204
DominatorNode<Block> aDode = pdom.getDode(a);
@@ -431,15 +431,14 @@ protected void constructPDG() {
431431
while (succItr.hasNext()) {
432432
PDGNode succRPDGNode = succItr.next();
433433

434-
// assert (succRPDGNode.getType() == PDGNode.Type.REGION);
434+
// assert (succRPDGNode.getType() == PDGNode.Type.REGION);
435435
Block h = null;
436436
if (succRPDGNode.getType() == PDGNode.Type.REGION) {
437437
Region succR = (Region) succRPDGNode.getNode();
438438
h = succR.getBlocks().get(0);
439439
} else {
440440
continue;
441441
}
442-
443442

444443
DominatorNode<Block> hdode = dom.getDode(h);
445444
DominatorNode<Block> adode = dom.getDode(a);

0 commit comments

Comments
 (0)