Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2016-01-23 07:45:03 +0000
committerDani Megert2016-01-23 07:45:03 +0000
commit6196efec69002c56accc4ece2df16f96e0c8ea99 (patch)
tree6ab581f2ddf18d6f101536bff1c5d82b7126e53f
parent8124ef1b34163de3a3e4a6f3c39f2045a25ceffc (diff)
downloadeclipse.platform.ua-6196efec69002c56accc4ece2df16f96e0c8ea99.tar.gz
eclipse.platform.ua-6196efec69002c56accc4ece2df16f96e0c8ea99.tar.xz
eclipse.platform.ua-6196efec69002c56accc4ece2df16f96e0c8ea99.zip
Clean up after bug 431704I20160124-2000
-rw-r--r--org.eclipse.ui.intro/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.ui.intro/pom.xml9
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IntroConfigurer.java4
3 files changed, 10 insertions, 5 deletions
diff --git a/org.eclipse.ui.intro/META-INF/MANIFEST.MF b/org.eclipse.ui.intro/META-INF/MANIFEST.MF
index 4b3ad0cbf..d7933bd5d 100644
--- a/org.eclipse.ui.intro/META-INF/MANIFEST.MF
+++ b/org.eclipse.ui.intro/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin_name
Bundle-SymbolicName: org.eclipse.ui.intro; singleton:=true
-Bundle-Version: 3.4.300.qualifier
+Bundle-Version: 3.5.0.qualifier
Bundle-Activator: org.eclipse.ui.internal.intro.impl.IntroPlugin
Bundle-Vendor: %provider_name
Bundle-Localization: plugin
diff --git a/org.eclipse.ui.intro/pom.xml b/org.eclipse.ui.intro/pom.xml
index b86d7d60a..1378377c6 100644
--- a/org.eclipse.ui.intro/pom.xml
+++ b/org.eclipse.ui.intro/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (c) 2012, 2014 Eclipse Foundation.
+ Copyright (c) 2012, 2016 Eclipse Foundation.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
@@ -18,6 +18,11 @@
</parent>
<groupId>org.eclipse.ui</groupId>
<artifactId>org.eclipse.ui.intro</artifactId>
- <version>3.4.300-SNAPSHOT</version>
+ <version>3.5.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <properties>
+ <code.ignoredWarnings>-warn:-raw,unchecked</code.ignoredWarnings>
+ </properties>
+
</project>
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IntroConfigurer.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IntroConfigurer.java
index 0663141e2..6fb63b9f1 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IntroConfigurer.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/config/IntroConfigurer.java
@@ -1,5 +1,5 @@
/***************************************************************************************************
- * Copyright (c) 2006 IBM Corporation and others. All rights reserved. This program and the
+ * Copyright (c) 2006, 2016 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
* http://www.eclipse.org/legal/epl-v10.html
@@ -36,7 +36,7 @@ public abstract class IntroConfigurer {
protected Map themeProperties;
protected IIntroSite site;
- protected IntroModelRoot model;
+ private IntroModelRoot model;
/**
* Provides the opportunity for the configurer to contribute to the action bars and to fetch

Back to the top