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 278c95a471 [MINOR] Fixed a compilation error due to wrong invocation
of NotImplementedException
278c95a471 is described below
commit 278c95a4718389e01afaffb317df5ce30186ef54
Author: Mark Dokter <[email protected]>
AuthorDate: Tue May 10 18:04:30 2022 +0200
[MINOR] Fixed a compilation error due to wrong invocation of
NotImplementedException
---
.../org/apache/sysds/runtime/compress/colgroup/ColGroupFactory.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/sysds/runtime/compress/colgroup/ColGroupFactory.java
b/src/main/java/org/apache/sysds/runtime/compress/colgroup/ColGroupFactory.java
index d40367de2e..8a73ec1b54 100644
---
a/src/main/java/org/apache/sysds/runtime/compress/colgroup/ColGroupFactory.java
+++
b/src/main/java/org/apache/sysds/runtime/compress/colgroup/ColGroupFactory.java
@@ -514,7 +514,7 @@ public class ColGroupFactory {
}
}
else {
- throw new NotImplementedException();
+ throw new NotImplementedException("");
}
}
@@ -546,7 +546,7 @@ public class ColGroupFactory {
}
}
else {
- throw new NotImplementedException();
+ throw new NotImplementedException("");
}
}