Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java')
-rw-r--r--org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java
index cd86bc65e..a55b55c47 100644
--- a/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java
+++ b/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/utils/SearchXMLGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 IBM Corporation and others.
+ * Copyright (c) 2011, 2015 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -22,18 +22,17 @@ import org.eclipse.help.internal.webapp.servlet.XMLGenerator;
public class SearchXMLGenerator {
- public static String serialize(Collection results) {
- return serialize((results != null) ? results.toArray() : null, false);
+ public static String serialize(Collection<SearchHit> results) {
+ return serialize((results != null) ? results.toArray(new SearchHit[results.size()]) : null, false);
}
- public static String serialize(Object[] hits, boolean boolIsCategory) {
+ public static String serialize(SearchHit[] hits, boolean boolIsCategory) {
StringBuffer buf = new StringBuffer();
buf.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"); //$NON-NLS-1$
buf.append("<searchHits>\n"); //$NON-NLS-1$
if (hits != null) {
- for (int i = 0; i < hits.length; i++) {
- SearchHit hit = (SearchHit) hits[i];
+ for (SearchHit hit : hits) {
serialize(hit, buf, " ", boolIsCategory); //$NON-NLS-1$
}
}

Back to the top