Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-10-18 10:40:19 +0000
committerAlexander Kurtakov2018-10-18 11:36:03 +0000
commit41e56139f31670455d0c982d3baceb314c0a5cc5 (patch)
tree6f04745e2a392b6fa8861ddb6714e90faeed4311
parent7b71a49a1ada59af06488e044e4545825d091bb7 (diff)
downloadeclipse.platform.ua-I20181102-2120.tar.gz
eclipse.platform.ua-I20181102-2120.tar.xz
eclipse.platform.ua-I20181102-2120.zip
After the activities generification. Change-Id: Ie7b865b32cbe42d496233ee18d511647d4650763 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.help.ui/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.help.ui/pom.xml2
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/HelpActivitySupport.java3
3 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.help.ui/META-INF/MANIFEST.MF b/org.eclipse.help.ui/META-INF/MANIFEST.MF
index a2cda0e0c..334a73780 100644
--- a/org.eclipse.help.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.help.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %help_system_plugin_name
Bundle-SymbolicName: org.eclipse.help.ui; singleton:=true
-Bundle-Version: 4.1.200.qualifier
+Bundle-Version: 4.1.300.qualifier
Bundle-Activator: org.eclipse.help.ui.internal.HelpUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/org.eclipse.help.ui/pom.xml b/org.eclipse.help.ui/pom.xml
index a01da36fc..3aca5ad93 100644
--- a/org.eclipse.help.ui/pom.xml
+++ b/org.eclipse.help.ui/pom.xml
@@ -18,6 +18,6 @@
</parent>
<groupId>org.eclipse.help</groupId>
<artifactId>org.eclipse.help.ui</artifactId>
- <version>4.1.200-SNAPSHOT</version>
+ <version>4.1.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/HelpActivitySupport.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/HelpActivitySupport.java
index 134d251d5..a62aebbf6 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/HelpActivitySupport.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/HelpActivitySupport.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2018 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -252,7 +252,6 @@ public class HelpActivitySupport implements IHelpActivitySupport {
}
@Override
- @SuppressWarnings("unchecked")
public void enableActivities(String href) {
if (href.startsWith("/")) { //$NON-NLS-1$
href = href.substring(1);

Back to the top