Skip to content

Commit 0114473

Browse files
committed
no log print
1 parent b4812ab commit 0114473

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/main/java/org/apache/sysds/runtime/compress/CompressedMatrixBlock.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,6 @@ public double interQuartileMean() {
12361236

12371237
@Override
12381238
public MatrixBlock pickValues(MatrixValue quantiles, MatrixValue ret) {
1239-
LOG.error(this);
12401239
return getUncompressed("pickValues").pickValues(quantiles, ret);
12411240
}
12421241

src/main/java/org/apache/sysds/runtime/matrix/data/MatrixBlock.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4822,8 +4822,6 @@ public final double pickValue(double quantile){
48224822
public final double pickValue(double quantile, boolean average) {
48234823
if(this.getNumColumns() == 1)
48244824
return pickUnweightedValue(quantile, average);
4825-
4826-
48274825
return pickWeightedValue(quantile, average);
48284826
}
48294827

0 commit comments

Comments
 (0)