Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2014-04-14 18:42:08 +0000
committerPaul Webster2014-04-14 18:42:08 +0000
commite138669d524de5f273afa73737eaaf6313b5a6a2 (patch)
treef47fcd04f066cfcdf7225d282d5957f1f907a058
parentea022825e2a6070bb4bebf373ce64552eab2265f (diff)
downloadeclipse.platform.ui-e138669d524de5f273afa73737eaaf6313b5a6a2.tar.gz
eclipse.platform.ui-e138669d524de5f273afa73737eaaf6313b5a6a2.tar.xz
eclipse.platform.ui-e138669d524de5f273afa73737eaaf6313b5a6a2.zip
Bug 418661 - [Metadata] Get rid of compile warnings in official build
Last createCommand(*) fix.
-rw-r--r--tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/HandlerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/HandlerTest.java b/tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/HandlerTest.java
index db81aaee631..4ccbdd60f38 100644
--- a/tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/HandlerTest.java
+++ b/tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/HandlerTest.java
@@ -301,7 +301,7 @@ public class HandlerTest extends TestCase {
ParameterizedCommand nonparameterizedCmd = cs.createCommand(TEST_ID3, null);
ParameterizedCommand parameterizedCmd = cs.createCommand(TEST_ID3,
- Collections.singletonMap(ACTIVE_INFO_ID, "param"));
+ Collections.singletonMap(ACTIVE_INFO_ID, (Object)"param"));
HandlerWithParams handler = new HandlerWithParams();
wHS.activateHandler(TEST_ID3, handler);

Back to the top