Community
Participate
Working Groups
Build ID: I20070222-0951 Steps To Reproduce: BPELEditor.getPaletteAdditionsContributorId() looks like this now: protected String getPaletteAdditionsContributorId() { if (contributorID == null) { ProcessExtension extension = (ProcessExtension) getExtensionMap().get(getProcess()); if (extension.isSpecCompliant()) { contributorID = IBPELUIConstants.BPEL_SPEC_COMPLIANT_EDITOR_ID; } else { contributorID = getEditorSite().getId(); } return contributorID; } } BPEL_SPEC_COMPLIANT_EDITOR_ID is "cosmic waste" ((c) Michal :) ) and shoule be deleted. So, the method should look this way: protected String getPaletteAdditionsContributorId() { return IBPELUIConstants.BPEL_EDITOR_ID; } More information:
Created attachment 70495 [details] a patch for the bug
The patch looks good, I reviewed it and will therefore release it
Comment on attachment 70495 [details] a patch for the bug Updated iplog flag for v1.0 release review.