Skip to content

Commit 5617217

Browse files
committed
Properly represent return type in javadoc
1 parent 13bde5c commit 5617217

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spoon-control-flow/src/test/java/fr/inria/controlflow/ControlFlowPathHelper.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ public class ControlFlowPathHelper {
1616
private final Map<ControlFlowNode, List<List<ControlFlowNode>>> pathsMemo = new HashMap<>();
1717

1818
/**
19-
* Get the set of possible paths to the exit node from a given starting node.
19+
* Get a list of possible paths to the exit node from a given starting node.
2020
*
2121
* @param node Starting node
22-
* @return Set of possible paths
22+
* @return List of possible paths
2323
*/
2424
List<List<ControlFlowNode>> paths(ControlFlowNode node) {
2525
if (pathsMemo.containsKey(node)) {
@@ -38,10 +38,10 @@ List<List<ControlFlowNode>> paths(ControlFlowNode node) {
3838
}
3939

4040
/**
41-
* Get the set of possible paths to the exit node given a set of potentially incomplete paths.
41+
* Get a list of possible paths to the exit node given a set of potentially incomplete paths.
4242
*
4343
* @param prior Set of potentially incomplete paths
44-
* @return Set of possible paths
44+
* @return List of possible paths
4545
*/
4646
private List<List<ControlFlowNode>> paths(List<List<ControlFlowNode>> prior) {
4747
List<List<ControlFlowNode>> result = new ArrayList<>();

0 commit comments

Comments
 (0)