This is an automated email from the ASF dual-hosted git repository. janardhan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/systemml.git
commit 23328d8c0c621a9fd21f94929c5d56ab13dd2c25 Author: Janardhan Pulivarthi <[email protected]> AuthorDate: Mon Apr 27 00:13:26 2020 +0530 [MINOR] Fix Javadoc issue at `getLineageTrace` * The parameter `var` is the output variable name for which the lineage trace is sought. Closes #899. --- src/main/java/org/apache/sysds/api/jmlc/PreparedScript.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sysds/api/jmlc/PreparedScript.java b/src/main/java/org/apache/sysds/api/jmlc/PreparedScript.java index 3175fcb..b8e769b 100644 --- a/src/main/java/org/apache/sysds/api/jmlc/PreparedScript.java +++ b/src/main/java/org/apache/sysds/api/jmlc/PreparedScript.java @@ -476,8 +476,11 @@ public class PreparedScript implements ConfigurableAPI /** * Capture lineage of the DML/PyDML program and view result as a string. - * + * + * @param var the output variable name on which lineage trace is sought + * * @return string results of lineage trace + * */ public String getLineageTrace(String var) { return _outVarLineage.get(var);
