Skip to content

Commit 9fac1af

Browse files
committed
fix
1 parent 51e167f commit 9fac1af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/apache/sysds/runtime/transform/encode/ColumnEncoderBin.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import java.util.Random;
3131
import java.util.concurrent.Callable;
3232

33-
import org.apache.commons.lang3.NotImplementedException;
3433
import org.apache.commons.lang3.tuple.MutableTriple;
3534
import org.apache.sysds.api.DMLScript;
3635
import org.apache.sysds.lops.Lop;
@@ -142,7 +141,7 @@ else if(_binMethod == BinMethod.EQUI_HEIGHT_APPROX){
142141
checkedForNull = true;
143142
}
144143
else {
145-
throw new NotImplementedException();
144+
checkedForNull = true;
146145
}
147146

148147
if(DMLScript.STATISTICS)

0 commit comments

Comments
 (0)