From 3721a3ceb86f1da61e9f3f96612b12a79026c003 Mon Sep 17 00:00:00 2001 From: Kadiray Karakaya Date: Wed, 12 Jun 2024 16:07:47 +0200 Subject: [PATCH] minor --- .../src/main/java/sootup/core/graph/MutableStmtGraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sootup.core/src/main/java/sootup/core/graph/MutableStmtGraph.java b/sootup.core/src/main/java/sootup/core/graph/MutableStmtGraph.java index a4cd6029b98..48ebfe01a54 100644 --- a/sootup.core/src/main/java/sootup/core/graph/MutableStmtGraph.java +++ b/sootup.core/src/main/java/sootup/core/graph/MutableStmtGraph.java @@ -111,7 +111,7 @@ public void setEdges(@Nonnull BranchingStmt from, @Nonnull Stmt... targets) { * removes the current outgoing flows of "from" to "to" * * @return returns List of the successor indices of "from" that were connected to "to" - items are - * 0 in case of FallsThroughStmts or idx > 0 in case of BranchingStmts with multiple + * 0 in case of FallsThroughStmts or idx > 0 in case of BranchingStmts with multiple * successors */ public abstract List removeEdge(@Nonnull Stmt from, @Nonnull Stmt to);