From 88da536d3968a073389c8d3d871af607ab18af0d Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Sun, 8 Jul 2012 15:26:31 +0000 Subject: [PATCH] LUCENE-4199: Remove stupid System.out in FastCharStream (this class is hand-written, not generated!) git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene4199@1358756 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/lucene/queryparser/classic/FastCharStream.java | 1 - .../queryparser/flexible/standard/parser/FastCharStream.java | 1 - .../lucene/queryparser/surround/parser/FastCharStream.java | 1 - 3 files changed, 3 deletions(-) diff --git a/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/FastCharStream.java b/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/FastCharStream.java index 8c995befcd1..6eafaf2313a 100644 --- a/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/FastCharStream.java +++ b/lucene/queryparser/src/java/org/apache/lucene/queryparser/classic/FastCharStream.java @@ -99,7 +99,6 @@ public final class FastCharStream implements CharStream { try { input.close(); } catch (IOException e) { - System.err.println("Caught: " + e + "; ignoring."); } } diff --git a/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/FastCharStream.java b/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/FastCharStream.java index bd6ad056a03..3fc9e8adccc 100644 --- a/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/FastCharStream.java +++ b/lucene/queryparser/src/java/org/apache/lucene/queryparser/flexible/standard/parser/FastCharStream.java @@ -99,7 +99,6 @@ public final class FastCharStream implements CharStream { try { input.close(); } catch (IOException e) { - System.err.println("Caught: " + e + "; ignoring."); } } diff --git a/lucene/queryparser/src/java/org/apache/lucene/queryparser/surround/parser/FastCharStream.java b/lucene/queryparser/src/java/org/apache/lucene/queryparser/surround/parser/FastCharStream.java index 4116eec3b2c..e2215410460 100644 --- a/lucene/queryparser/src/java/org/apache/lucene/queryparser/surround/parser/FastCharStream.java +++ b/lucene/queryparser/src/java/org/apache/lucene/queryparser/surround/parser/FastCharStream.java @@ -96,7 +96,6 @@ public final class FastCharStream implements CharStream { try { input.close(); } catch (IOException e) { - System.err.println("Caught: " + e + "; ignoring."); } }