Skip to content

Commit bfc3b4d

Browse files
committed
[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.
1 parent f4b7a47 commit bfc3b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/sysds/runtime/iogen/codegen/MatrixCodeGen.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public MatrixCodeGen(CustomProperties properties, String className) {
4242
"import java.util.HashSet;\n" +
4343
"import org.apache.sysds.runtime.io.IOUtilFunctions; \n" +
4444
"import org.apache.sysds.runtime.util.UtilFunctions; \n" +
45-
"import org.apache.commons.lang.mutable.MutableInt; \n" +
45+
"import org.apache.commons.lang3.mutable.MutableInt; \n" +
4646
"import org.apache.sysds.runtime.iogen.template.TemplateUtil; \n" +
4747
"public class "+className+" extends "+javaBaseClass+" {\n" +
4848
"public "+className+"(CustomProperties _props) {\n" +

0 commit comments

Comments
 (0)