Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2011-10-13 20:56:06 +0000
committerChris Goldthorpe2011-10-13 20:56:06 +0000
commit33b7a3aa349fe40d99263598f1d913f5daef429c (patch)
tree706bef5737801c5daceac4428c03a36a40fe2fd7 /org.eclipse.help.base/src
parent6a242651757dd301cb6f41ba927ebfe7d690ec57 (diff)
downloadeclipse.platform.ua-33b7a3aa349fe40d99263598f1d913f5daef429c.tar.gz
eclipse.platform.ua-33b7a3aa349fe40d99263598f1d913f5daef429c.tar.xz
eclipse.platform.ua-33b7a3aa349fe40d99263598f1d913f5daef429c.zip
Part 3 of fix for Bug 359761 - [Help] Warnings for Generics showing in
org.eclipse.help.base after switch to J2SE-1.5
Diffstat (limited to 'org.eclipse.help.base/src')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipant.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipant.java b/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipant.java
index 0bc5afcc2..621fb9299 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipant.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/search/SearchParticipant.java
@@ -109,7 +109,7 @@ public abstract class SearchParticipant {
*
* @return a set<String> of hrefs for documents managed by this participant.
*/
- public Set getAllDocuments(String locale) {
+ public Set<String> getAllDocuments(String locale) {
return EMPTY_SET;
}
@@ -120,7 +120,7 @@ public abstract class SearchParticipant {
* @return a set<String> of contributing plug-in ids
*/
- public Set getContributingPlugins() {
+ public Set<String> getContributingPlugins() {
return EMPTY_SET;
}

Back to the top