Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2016-04-09 06:04:44 +0000
committerAlexander Kurtakov2016-04-09 06:04:44 +0000
commit88793d1ac69180ba3e43342e995edebab72d236e (patch)
tree3050b16a8e4086fa98259b1dabba1ce1ace069bc /org.eclipse.ua.tests
parent87502bc98ec1c89e8adba4df7aa86d3e12dd4a06 (diff)
downloadeclipse.platform.ua-88793d1ac69180ba3e43342e995edebab72d236e.tar.gz
eclipse.platform.ua-88793d1ac69180ba3e43342e995edebab72d236e.tar.xz
eclipse.platform.ua-88793d1ac69180ba3e43342e995edebab72d236e.zip
Bug 491265 - Generify org.eclipse.ui.intro*
* Fix remaining warnings in o.e.ui.intro.universal. * Enable more compiler warnings to make them visible in workbench. * Add missing Override annotations. Change-Id: Ide01e15c99735134ae47cf7754001b577d36c28b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.ua.tests')
-rw-r--r--org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/contentdetect/ContentDetectorTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/contentdetect/ContentDetectorTest.java b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/contentdetect/ContentDetectorTest.java
index a558fff4c..b8d33f6c6 100644
--- a/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/contentdetect/ContentDetectorTest.java
+++ b/org.eclipse.ua.tests/intro/org/eclipse/ua/tests/intro/contentdetect/ContentDetectorTest.java
@@ -108,8 +108,8 @@ public class ContentDetectorTest {
assertFalse(detector.isNewContentAvailable());
// Make the first extension appear new
helper.saveExtensionCount(extensionCount - 1);
- Set<?> contributors = helper.getContributors();
- String firstContribution = (String) contributors.iterator().next();
+ Set<String> contributors = helper.getContributors();
+ String firstContribution = contributors.iterator().next();
String copyOfFirstContribution = "" + firstContribution;
contributors.remove(firstContribution);
helper.saveContributors(contributors);

Back to the top