You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2019/08/23 03:35:47 UTC

[incubator-datasketches-java] 02/03: Minor updates to pom

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

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

commit be1cded7b97c942f46b09c67f18d23c870a05d43
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Thu Aug 22 20:30:59 2019 -0700

    Minor updates to pom
---
 pom.xml                                                 | 2 +-
 src/main/java/com/yahoo/sketches/fdt/PostProcessor.java | 1 +
 src/main/java/com/yahoo/sketches/theta/UnionImpl.java   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 767d9bc..e79e42a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@ under the License.
     </parent>
 
     <groupId>org.apache.datasketches</groupId>
-    <artifactId>datasketches-core</artifactId>
+    <artifactId>datasketches-java</artifactId>
     <packaging>jar</packaging>
     <version>0.13.5-incubating-SNAPSHOT</version>
 
diff --git a/src/main/java/com/yahoo/sketches/fdt/PostProcessor.java b/src/main/java/com/yahoo/sketches/fdt/PostProcessor.java
index c113cd0..85977cb 100644
--- a/src/main/java/com/yahoo/sketches/fdt/PostProcessor.java
+++ b/src/main/java/com/yahoo/sketches/fdt/PostProcessor.java
@@ -33,6 +33,7 @@ import com.yahoo.sketches.tuple.strings.ArrayOfStringsSummary;
 /**
  * This processes the contents of a FDT sketch to extract the
  * primary keys with the most frequent unique combinations of the non-primary dimensions.
+ * The source sketch is not modified.
  *
  * @author Lee Rhodes
  */
diff --git a/src/main/java/com/yahoo/sketches/theta/UnionImpl.java b/src/main/java/com/yahoo/sketches/theta/UnionImpl.java
index 3b74801..9a4e6c2 100644
--- a/src/main/java/com/yahoo/sketches/theta/UnionImpl.java
+++ b/src/main/java/com/yahoo/sketches/theta/UnionImpl.java
@@ -310,7 +310,7 @@ final class UnionImpl extends Union {
           final long hashIn = cacheIn[i];
           if ((hashIn <= 0L) || (hashIn >= unionThetaLong_)) { continue; } //rejects dirty values
           gadget_.hashUpdate(hashIn); //backdoor update, hash function is bypassed
-          c++; //insures against invalid state inside the incoming sketch
+          c++; //ensures against invalid state inside the incoming sketch
         }
       }
     }


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