Skip to content

Commit

Permalink
Merge pull request #1 from sylee0124/ISSUE429-team9-codesmell
Browse files Browse the repository at this point in the history
Issue429 team9 codesmell
  • Loading branch information
Yoo-Youngjae committed Dec 2, 2019
2 parents 0c1a23c + 6fdf9f0 commit a2d5092
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/src/main/java/org/apache/nemo/common/ir/IRDAG.java
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ public List<IRVertex> getChildren(final String vertexId) {

@Override
public IREdge getEdgeBetween(final String srcVertexId,
final String dstVertexId) throws IllegalEdgeOperationException {
final String dstVertexId) {
return modifiedDAG.getEdgeBetween(srcVertexId, dstVertexId);
}

Expand Down
2 changes: 1 addition & 1 deletion common/src/test/java/org/apache/nemo/common/DAGTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void testSimpleDAG() {
assertEquals(dag.getParents("2").size(), 1);
assertEquals(dag.getChildren("2").size(), 1);
assertEquals(dag.getParents("5").size(), 1);
assertEquals(dag.getChildren("5").size(), 0);
assertEquals(0, dag.getChildren("5").size());
assertEquals(dag.getVertexById("1"), new IntegerVertex(1));
}

Expand Down

0 comments on commit a2d5092

Please sign in to comment.