You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wayang.apache.org by be...@apache.org on 2022/01/24 19:39:42 UTC

[incubator-wayang] branch main updated: [DOCS] add todo as test

This is an automated email from the ASF dual-hosted git repository.

bertty pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-wayang.git


The following commit(s) were added to refs/heads/main by this push:
     new fe066b3  [DOCS] add todo as test
fe066b3 is described below

commit fe066b31d72e8789886aa1217f2516c576195a32
Author: Bertty Contreras-Rojas <be...@databloom.ai>
AuthorDate: Mon Jan 24 20:39:34 2022 +0100

    [DOCS] add todo as test
    
    Signed-off-by: bertty <be...@apache.org>
---
 .../org/apache/wayang/core/plan/executionplan/ExecutionPlan.java    | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/plan/executionplan/ExecutionPlan.java b/wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/plan/executionplan/ExecutionPlan.java
index 352c413..99628ce 100644
--- a/wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/plan/executionplan/ExecutionPlan.java
+++ b/wayang-commons/wayang-core/src/main/java/org/apache/wayang/core/plan/executionplan/ExecutionPlan.java
@@ -95,6 +95,12 @@ public class ExecutionPlan {
         return sb.toString();
     }
 
+    /**
+     * TODO: ExecutionPlan.toJsonList add documentation
+     * labels:documentation,todo
+     *
+     * @return
+     */
     public List<Map> toJsonList() {
         Counter<ExecutionStage> stageActivationCounter = new Counter<>();
         Queue<ExecutionStage> activatedStages = new LinkedList<>(this.startingStages);