You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by al...@apache.org on 2020/01/17 00:37:00 UTC

[incubator-datasketches-java] 02/02: removed obsolete section

This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch fix_tuple_union
in repository https://gitbox.apache.org/repos/asf/incubator-datasketches-java.git

commit dcaa2dd303a438a0f6a1f7f98ae52a918f3a198a
Author: AlexanderSaydakov <Al...@users.noreply.github.com>
AuthorDate: Thu Jan 16 16:36:42 2020 -0800

    removed obsolete section
---
 src/main/java/org/apache/datasketches/tuple/QuickSelectSketch.java | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/main/java/org/apache/datasketches/tuple/QuickSelectSketch.java b/src/main/java/org/apache/datasketches/tuple/QuickSelectSketch.java
index e32b735..a50d920 100644
--- a/src/main/java/org/apache/datasketches/tuple/QuickSelectSketch.java
+++ b/src/main/java/org/apache/datasketches/tuple/QuickSelectSketch.java
@@ -172,11 +172,6 @@ class QuickSelectSketch<S extends Summary> extends Sketch<S> {
       count = mem.getInt(offset);
       offset += Integer.BYTES;
     }
-    //    if (version == serialVersionWithSummaryFactoryUID) {
-    //      final DeserializeResult<SummaryFactory<S>> factoryResult =
-    //          SerializerDeserializer.deserializeFromMemory(mem, offset);
-    //      offset += factoryResult.getSize();
-    //    }
     final int currentCapacity = 1 << lgCurrentCapacity_;
     keys_ = new long[currentCapacity];
     for (int i = 0; i < count; i++) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org