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 2023/03/01 04:14:55 UTC

[datasketches-java] branch update_gitignore_remove_printing_from_test created (now 37e6db92)

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

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


      at 37e6db92 gitignore needed to be updated to ignore *.iml files in directories below the root.

This branch includes the following new commits:

     new 37e6db92 gitignore needed to be updated to ignore *.iml files in directories below the root.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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


[datasketches-java] 01/01: gitignore needed to be updated to ignore *.iml files in directories below the root.

Posted by le...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 37e6db922e4fee59fd8239af540aeed4d91586e7
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Tue Feb 28 20:14:33 2023 -0800

    gitignore needed to be updated to ignore *.iml files in directories
    below the root.
    
    Test printing was accidentally left on in the
    GenericInequalitySearchTest. Fixed.
---
 .gitignore                                                            | 4 ++--
 .../datasketches/quantilescommon/GenericInequalitySearchTest.java     | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 70d95d55..3c708957 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,7 +6,7 @@
 
 # IntelliJ project files
 *.idea
-*.iml
+**/*.iml
 *.ipr
 *.iws
 
@@ -14,7 +14,7 @@
 .clover/
 
 # OSX files
-.DS_Store
+**/.DS_Store
 
 # Compiler output, class files
 *.class
diff --git a/src/test/java/org/apache/datasketches/quantilescommon/GenericInequalitySearchTest.java b/src/test/java/org/apache/datasketches/quantilescommon/GenericInequalitySearchTest.java
index be221d2a..6d6cdd40 100644
--- a/src/test/java/org/apache/datasketches/quantilescommon/GenericInequalitySearchTest.java
+++ b/src/test/java/org/apache/datasketches/quantilescommon/GenericInequalitySearchTest.java
@@ -287,7 +287,7 @@ public class GenericInequalitySearchTest {
     return "";
   }
 
-  private final static boolean enablePrinting = true;
+  private final static boolean enablePrinting = false;
 
   /**
    * @param format the format


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