From 64e6e196ac4c157aff4433b150eec53158e8c981 Mon Sep 17 00:00:00 2001 From: Mark Robert Miller Date: Mon, 3 Jan 2011 19:19:56 +0000 Subject: [PATCH] update comment about queries silently failing git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1054713 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/src/java/org/apache/lucene/document/Fieldable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lucene/src/java/org/apache/lucene/document/Fieldable.java b/lucene/src/java/org/apache/lucene/document/Fieldable.java index 3b48ad53350..3d753d76e91 100755 --- a/lucene/src/java/org/apache/lucene/document/Fieldable.java +++ b/lucene/src/java/org/apache/lucene/document/Fieldable.java @@ -206,7 +206,7 @@ public interface Fieldable extends Serializable { * required in the index, it also means any query * requiring positional information, such as {@link * PhraseQuery} or {@link SpanQuery} subclasses will - * silently fail to find results. + * fail with an exception. */ void setOmitTermFreqAndPositions(boolean omitTermFreqAndPositions); }