Skip to content

Commit 14cf83b

Browse files
committed
backport security fixes PR so we can create a 5.0.2 release
1 parent bbcdd15 commit 14cf83b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/org/apache/datasketches/quantiles/ItemsSketch.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ ItemsSketchSortedView<T> getSV() {
682682
}
683683

684684
return new ItemsSketchSortedView(
685-
quantiles, cumWeights, getN(), comparator, getMaxItem(), getMinItem(), getK());
685+
quantiles, cumWeights, getN(), comparator, getMaxItem(), getMinItem());
686686
}
687687

688688
}

src/main/java/org/apache/datasketches/quantiles/ItemsSketchSortedView.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import java.lang.reflect.Array;
2929
import java.util.Comparator;
3030

31-
import org.apache.datasketches.common.SketchesArgumentException;
3231
import org.apache.datasketches.quantilescommon.GenericInequalitySearch.Inequality;
3332
import org.apache.datasketches.quantilescommon.GenericPartitionBoundaries;
3433
import org.apache.datasketches.quantilescommon.GenericSortedView;

0 commit comments

Comments
 (0)