Mailing List Archive

cvs commit: jakarta-lucene-sandbox/contributions/fulcrum SearchResults.java
kelvint 2002/09/23 01:13:23

Modified: contributions/fulcrum SearchResults.java
Log:
Removed or otherwise commented out dependency on appex/Indyo.

Revision Changes Path
1.5 +6 -5 jakarta-lucene-sandbox/contributions/fulcrum/SearchResults.java

Index: SearchResults.java
===================================================================
RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/fulcrum/SearchResults.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- SearchResults.java 29 Jun 2002 07:58:59 -0000 1.4
+++ SearchResults.java 23 Sep 2002 08:13:23 -0000 1.5
@@ -1,7 +1,6 @@
import org.apache.log4j.Category;
import org.apache.lucene.document.Document;
import org.apache.lucene.search.Hits;
-import search.SearchResultFactory;

import java.io.IOException;

@@ -15,10 +14,6 @@
* SearchResults also provides a way of retrieving Java objects from
* Documents (via {@link search.SearchResultsFactory}).
* </p>
- * <p>
- * <b>Note that this implementation uses code from
- * /projects/appex/search.</b>
- * </p>
*/
public class SearchResults
{
@@ -67,6 +62,11 @@
*/
public Object[] getResultsAsObjects()
{
+ /**
+ * At this point, use some mechanism of retrieving
+ * the objects via a UUID or something.
+ */
+ /*
if (objectResults == null)
{
objectResults = new Object[hitsDocuments.length];
@@ -83,6 +83,7 @@
}
}
}
+ */
return objectResults;
}
}




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>