We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Feature Set or Product Line: after a creatig dialog is 'finished', there is an error in console:
---------------------------------- !ENTRY org.eclipse.passage.loc.features.core 2 0 2020-11-17 17:50:25.479 !MESSAGE Duplication of feature instances. The existing instance: "org.eclipse.passage.lic.features.model.impl.FeatureSetImpl@71ee2fff (identifier: samples.feature.set, name: Samples Feature Set, description: null)" will be replaced by: "org.eclipse.passage.lic.features.model.impl.FeatureSetImpl@68f2363 (identifier: samples.feature.set, name: Samples Feature Set, description: null)" ----------------------------------
Version: 1.1.0 Ported from bugs.eclipse.org: 568895
Created entities are unoperable: child can be added, but cannot be edited
The text was updated successfully, but these errors were encountered:
Ported comment Elena Parovyshnaia 2020-11-18 00:54:13 EST
RootClassifierWizard::protected void store(String path, EObject candidate) does pretty straightforward things:
------------------------------------------------------------ 1 URI fileURI = URI.createFileURI(path); 2 Resource resource = resourceSet().createResource(fileURI); 3 resource.getContents().add(candidate); 4 LocWokbench.save(resource); 5 registry.registerSource(fileURI.toFileString()); ------------------------------------------------------------
Line 3 causes XMIResource-replenichment notification firing, which ends up in FeatureDomainRegistry::registerFeatureSet call
FeatureDomainRegistry::registerFeatureSet
Line 5 triggers XMIResource-load, which also leads to this FeatureDomainRegistry::registerFeatureSet
Should we clean the FeatureDomainRegistry::featureSetIndex prior XMIResource-load?
FeatureDomainRegistry::featureSetIndex
Eitherway, this error looks cosmetic and does not actually causes the effects described in this issue.
Sorry, something went wrong.
[#953] Operator: error on creating top-level aggregators
6901bdd
96d2527
a6cd7da
eparovyshnaya
Successfully merging a pull request may close this issue.
Create Feature Set or Product Line: after a creatig dialog is 'finished', there is an error in console:
Version: 1.1.0
Ported from bugs.eclipse.org: 568895
Created entities are unoperable: child can be added, but cannot be edited
The text was updated successfully, but these errors were encountered: