Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Noyrit2016-01-11 10:11:53 +0000
committerFlorian Noyrit2016-01-11 10:11:53 +0000
commitdcd120bb3ebc52933b4ecf5e2d498daf3f7866eb (patch)
tree60beab08fa45c53308c35f5dac3b43a58101b148 /plugins
parente48ce96928453387a7b1910a943b522dc15e9a10 (diff)
downloadorg.eclipse.papyrus-dcd120bb3ebc52933b4ecf5e2d498daf3f7866eb.tar.gz
org.eclipse.papyrus-dcd120bb3ebc52933b4ecf5e2d498daf3f7866eb.tar.xz
org.eclipse.papyrus-dcd120bb3ebc52933b4ecf5e2d498daf3f7866eb.zip
Typo in ElementtypeConfiguration Notification Facilities
Diffstat (limited to 'plugins')
-rw-r--r--plugins/developer/org.eclipse.papyrus.elementtypesconfigurations.developer/src/org/eclipse/papyrus/elementtypesconfigurations/developer/providers/ElementTypesConfigurationsEventContentProvider.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/developer/org.eclipse.papyrus.elementtypesconfigurations.developer/src/org/eclipse/papyrus/elementtypesconfigurations/developer/providers/ElementTypesConfigurationsEventContentProvider.java b/plugins/developer/org.eclipse.papyrus.elementtypesconfigurations.developer/src/org/eclipse/papyrus/elementtypesconfigurations/developer/providers/ElementTypesConfigurationsEventContentProvider.java
index 63f6be1b299..ed359c6846f 100644
--- a/plugins/developer/org.eclipse.papyrus.elementtypesconfigurations.developer/src/org/eclipse/papyrus/elementtypesconfigurations/developer/providers/ElementTypesConfigurationsEventContentProvider.java
+++ b/plugins/developer/org.eclipse.papyrus.elementtypesconfigurations.developer/src/org/eclipse/papyrus/elementtypesconfigurations/developer/providers/ElementTypesConfigurationsEventContentProvider.java
@@ -101,7 +101,7 @@ public class ElementTypesConfigurationsEventContentProvider implements ITreeCont
List<AbstractElementTypesConfigurationsEvent> adviceRequestConfigurationEvents = elementTypesConfigurationsEventsChain.getAdviceRequestConfigurationEvents();
if (!adviceRequestConfigurationEvents.isEmpty()) {
- result.add(new AbstractMap.SimpleEntry<String, Object>("BeforeAdvicesCommandsEvents", adviceRequestConfigurationEvents));
+ result.add(new AbstractMap.SimpleEntry<String, Object>("AdviceRequestConfigurationEvents", adviceRequestConfigurationEvents));
}
AbstractElementTypesConfigurationsEvent editHelperRequestConfigurationEvent = elementTypesConfigurationsEventsChain.getEditHelperRequestConfigurationEvent();
if (editHelperRequestConfigurationEvent != null) {

Back to the top