You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/08/21 01:31:06 UTC

[39/50] [abbrv] lucene-solr:jira/http2: LUCENE-8457: turn off debugging output for test

LUCENE-8457: turn off debugging output for test


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/d8ba1b16
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/d8ba1b16
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/d8ba1b16

Branch: refs/heads/jira/http2
Commit: d8ba1b16619d9ced93557d695951a3b05432ddd0
Parents: 30f64d7
Author: Karl Wright <Da...@gmail.com>
Authored: Sat Aug 18 10:53:30 2018 -0400
Committer: Karl Wright <Da...@gmail.com>
Committed: Sat Aug 18 10:53:30 2018 -0400

----------------------------------------------------------------------
 .../test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d8ba1b16/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java
index 957e166..aea057d 100644
--- a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java
+++ b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/geom/XYZSolidTest.java
@@ -221,14 +221,14 @@ public class XYZSolidTest extends LuceneTestCase {
   //@AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/LUCENE-8457")
   public void testLUCENE8457() {
     GeoShape shape = GeoBBoxFactory.makeGeoBBox(PlanetModel.WGS84, Math.PI, 1.2487354264870392, 0.0, 3.5181789305199657E-12);
-    System.out.println("shape = "+shape);
+    //System.out.println("shape = "+shape);
     XYZBounds bounds = new XYZBounds();
     shape.getBounds(bounds);
     XYZSolid solid = XYZSolidFactory.makeXYZSolid(PlanetModel.WGS84, bounds);
-    System.out.println("solid = "+solid);
+    //System.out.println("solid = "+solid);
 
     GeoPoint point = new GeoPoint(PlanetModel.WGS84, 1.4812439919751819, -3.141592653589793);
-    System.out.println("point="+point);
+    //System.out.println("point="+point);
     //if the point is within the shape, it must be within the solid
     if (shape.isWithin(point)) {
       assertTrue(solid.isWithin(point));