Skip to content

Commit 357a8a7

Browse files
committed
Prepare for merge
1 parent e566965 commit 357a8a7

351 files changed

Lines changed: 4620 additions & 55082 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/org/apache/datasketches/fdt/FdtSketch.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919

2020
package org.apache.datasketches.fdt;
2121

22+
import java.lang.foreign.MemorySegment;
2223
import java.util.List;
2324

2425
import org.apache.datasketches.common.SketchesArgumentException;
25-
import org.apache.datasketches.memory.Memory;
2626
import org.apache.datasketches.thetacommon.ThetaUtil;
2727
import org.apache.datasketches.tuple.strings.ArrayOfStringsSketch;
2828

@@ -59,14 +59,14 @@ public FdtSketch(final int lgK) {
5959

6060
/**
6161
* Used by deserialization.
62-
* @param mem the image of a FdtSketch
62+
* @param seg the image of a FdtSketch
6363
* @deprecated As of 3.0.0, heapifying an UpdatableSketch is deprecated.
6464
* This capability will be removed in a future release.
6565
* Heapifying a CompactSketch is not deprecated.
6666
*/
6767
@Deprecated
68-
FdtSketch(final Memory mem) {
69-
super(mem);
68+
FdtSketch(final MemorySegment seg) {
69+
super(seg);
7070
}
7171

7272
/**

src/main/java/org/apache/datasketches/fdt2/FdtSketch.java

Lines changed: 0 additions & 166 deletions
This file was deleted.

src/main/java/org/apache/datasketches/fdt2/Group.java

Lines changed: 0 additions & 140 deletions
This file was deleted.

0 commit comments

Comments
 (0)