Author: snjeza
Date: 2012-02-15 18:26:41 -0500 (Wed, 15 Feb 2012)
New Revision: 38792
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesRequirementsPage.java
Log:
JBIDE-10691 the "requirements" part of project examples should not
'disappear' when they are fullfilled
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesRequirementsPage.java
===================================================================
---
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesRequirementsPage.java 2012-02-15
23:25:45 UTC (rev 38791)
+++
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesRequirementsPage.java 2012-02-15
23:26:41 UTC (rev 38792)
@@ -316,7 +316,8 @@
Object object = selection.getFirstElement();
if (object instanceof ProjectFix) {
ProjectFix fix = (ProjectFix) object;
- if (!unsatisfiedFixes.contains(fix)) {
+ if (!unsatisfiedFixes.contains(fix) &&
!(ProjectFix.WTP_RUNTIME.equals(fix.getType())
+ || ProjectFix.SEAM_RUNTIME.equals(fix.getType()))) {
return;
}
if (ProjectFix.WTP_RUNTIME.equals(fix.getType())
Show replies by date