From e1e5825f8b39c2ee117c82968696431e83bcef14 Mon Sep 17 00:00:00 2001 From: Chris Goldthorpe Date: Fri, 7 Jan 2011 21:34:57 +0000 Subject: Fix warnings when compiled with Java 5.0 --- .../org/eclipse/ua/tests/help/webextension/TitleSearchData.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'org.eclipse.ua.tests/help/org') diff --git a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webextension/TitleSearchData.java b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webextension/TitleSearchData.java index b6cceaa65..f6514570f 100644 --- a/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webextension/TitleSearchData.java +++ b/org.eclipse.ua.tests/help/org/eclipse/ua/tests/help/webextension/TitleSearchData.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009 IBM Corporation and others. + * Copyright (c) 2009, 2011 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 @@ -29,7 +29,7 @@ public TitleSearchData(ServletContext context, HttpServletRequest request, super(context, request, response); } -private List results; +private List results; private String searchTerm; public class SearchResult { @@ -38,7 +38,7 @@ public class SearchResult { } public SearchResult[] getSearchResults() { - results = new ArrayList(); + results = new ArrayList(); searchTerm = request.getParameter("searchWord"); IToc[] tocs = getTocs(); for (int i = 0; i < tocs.length; i++) { @@ -47,7 +47,7 @@ public SearchResult[] getSearchResults() { searchTopic(topics[t]); } } - return (SearchResult[]) results.toArray(new SearchResult[results.size()]); + return results.toArray(new SearchResult[results.size()]); } private void searchTopic(ITopic topic) { -- cgit v1.2.3