Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSopot Cela2013-10-17 14:00:04 +0000
committerSopot Cela2013-10-17 14:00:04 +0000
commit9ea63328b7cf3ae2f9ab43d75751b867e7044ed4 (patch)
tree43124e9812aac322eec6e1bbb79c9c487f67c069
parent287ca8759967fa0cdb25b04ee8fa538f19dc9a58 (diff)
downloadorg.eclipse.e4.tools-9ea63328b7cf3ae2f9ab43d75751b867e7044ed4.tar.gz
org.eclipse.e4.tools-9ea63328b7cf3ae2f9ab43d75751b867e7044ed4.tar.xz
org.eclipse.e4.tools-9ea63328b7cf3ae2f9ab43d75751b867e7044ed4.zip
Bug 402849 - Property clearPersistedState in plugin.xml rules outI20131017-2200
product configuration
-rw-r--r--bundles/org.eclipse.e4.tools/src/org/eclipse/e4/internal/tools/wizards/project/E4NewProjectWizard.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.tools/src/org/eclipse/e4/internal/tools/wizards/project/E4NewProjectWizard.java b/bundles/org.eclipse.e4.tools/src/org/eclipse/e4/internal/tools/wizards/project/E4NewProjectWizard.java
index 492b12f2..798b39b5 100644
--- a/bundles/org.eclipse.e4.tools/src/org/eclipse/e4/internal/tools/wizards/project/E4NewProjectWizard.java
+++ b/bundles/org.eclipse.e4.tools/src/org/eclipse/e4/internal/tools/wizards/project/E4NewProjectWizard.java
@@ -321,7 +321,10 @@ public class E4NewProjectWizard extends NewPluginProjectWizard {
|| entry.getKey().equals(
NewApplicationWizardPage.APPLICATION)
|| entry.getKey().equals(
- NewApplicationWizardPage.richSample)) {
+ NewApplicationWizardPage.richSample)
+ || entry.getKey().equals(
+ NewApplicationWizardPage.CLEAR_PERSISTED_STATE)
+ ) {
continue;
}
IPluginElement element = fmodel.getFactory()

Back to the top