Community
Participate
Working Groups
That bundle is supposed to be Foundation 1.0 compliant according to the 3.4 plan. Maybe this has changed for 3.5. The EEs defined for this project are: Bundle-RequiredExecutionEnvironment: J2SE-1.4, CDC-1.0/Foundation-1.0, J2SE-1.3 And for the compilation, pde.build ends up taking the first execution environment which is 1.4. If pde.build would take the latest execution environment, it would not compile. The bundle execution environment should be changed to 1.4 or some type references should be removed. Here is the list of possible problematic references found by the new validation from api tooling: The type java.util.LinkedHashSet referenced in org.eclipse.help.internal.util.ProductPreferences is not defined in bundle's required execution environment: J2SE-1.3 The constructor LinkedHashSet(Collection) referenced in org.eclipse.help.internal.util.ProductPreferences is not defined in bundle's required execution environment: J2SE-1.3 java.util.LinkedHashSet has been added in 1.4. Since 1.3 fails, the other execution environment Foundation 1.0 is not even checked.
*** This bug has been marked as a duplicate of bug 256921 ***