This is an automated email from the ASF dual-hosted git repository.
mboehm7 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 969eaffcfc [MINOR] Fix file-format-specific construction of compressed
readers
969eaffcfc is described below
commit 969eaffcfc8c82a11d4a488c7debb970d2263bb3
Author: Matthias Boehm <[email protected]>
AuthorDate: Fri Feb 24 23:28:02 2023 +0100
[MINOR] Fix file-format-specific construction of compressed readers
---
src/main/java/org/apache/sysds/runtime/io/MatrixReaderFactory.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/sysds/runtime/io/MatrixReaderFactory.java
b/src/main/java/org/apache/sysds/runtime/io/MatrixReaderFactory.java
index 1cd6d85ce2..845271c061 100644
--- a/src/main/java/org/apache/sysds/runtime/io/MatrixReaderFactory.java
+++ b/src/main/java/org/apache/sysds/runtime/io/MatrixReaderFactory.java
@@ -70,7 +70,8 @@ public class MatrixReaderFactory {
case COMPRESSED:
reader = ReaderCompressed.create();
-
+ break;
+
default:
throw new DMLRuntimeException("Failed to create
matrix reader for unknown format: " + fmt.toString());
}