svn commit: r567220 - /xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java
| Newsgroups | gmane.text.xml.xindice.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: vgritsenko
Date: Fri Aug 17 20:28:11 2007
New Revision: 567220
URL: http://svn.apache.org/viewvc?view=rev&rev=567220
Log:
javadoc
Modified:
xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java
Modified: xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java?view=diff&rev=567220&r1=567219&r2=567220
==============================================================================
--- xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java (original)
+++ xml/xindice/trunk/java/src/org/apache/xindice/core/indexer/LuceneIndexer.java Fri Aug 17 20:28:11 2007
@@ -473,7 +473,7 @@
*
* @param query Compiled Lucene query.
* @return The resulting matches
- * @throws DBException
+ * @throws DBException if IOException prevented indexer from executing the query.
*/
public synchronized IndexMatch[] queryMatches(Query query) throws DBException {
ArrayList matches = new ArrayList();
@@ -491,4 +491,4 @@
return (IndexMatch[]) matches.toArray(EMPTY_MATCHES);
}
-}
\ No newline at end of file
+}