This is an automated email from the ASF dual-hosted git repository.
markd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new bfc3b4d0cf [MINOR] Fix stale import of apache.commons.lang in GIO
codegen
bfc3b4d0cf is described below
commit bfc3b4d0cfa9a298c6b05c9a859d14938f8f74e8
Author: Mark Dokter <[email protected]>
AuthorDate: Sat Feb 17 01:39:25 2024 +0100
[MINOR] Fix stale import of apache.commons.lang in GIO codegen
This patch only fixes the import but does not fix the test cases which were
silently failing and reporting a successful completion nevertheless.
---
src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java
b/src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java
index c8b3b98da1..e48f37206a 100644
--- a/src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java
+++ b/src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java
@@ -42,7 +42,7 @@ public class MatrixCodeGen extends TemplateCodeGenBase {
"import java.util.HashSet;\n" +
"import org.apache.sysds.runtime.io.IOUtilFunctions;
\n" +
"import org.apache.sysds.runtime.util.UtilFunctions;
\n" +
- "import org.apache.commons.lang.mutable.MutableInt; \n"
+
+ "import org.apache.commons.lang3.mutable.MutableInt;
\n" +
"import
org.apache.sysds.runtime.iogen.template.TemplateUtil; \n" +
"public class "+className+" extends "+javaBaseClass+"
{\n" +
"public "+className+"(CustomProperties _props) {\n" +