Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenzo Bettini2014-05-10 16:19:53 +0000
committerLorenzo Bettini2014-05-10 16:19:53 +0000
commitfb20a0f6c7a757fa42c15eb0255007da5ddb8018 (patch)
tree8484acfe0c356f5cd2af3e86cb18dcee6bc8e231 /plugins
parent4d0f1889f6019e0e97c4dd3a5c92bf26f0e19140 (diff)
downloadorg.eclipse.emf-parsley-fb20a0f6c7a757fa42c15eb0255007da5ddb8018.tar.gz
org.eclipse.emf-parsley-fb20a0f6c7a757fa42c15eb0255007da5ddb8018.tar.xz
org.eclipse.emf-parsley-fb20a0f6c7a757fa42c15eb0255007da5ddb8018.zip
433251: bindEmfActionBarContributor is a wrong method name
Change-Id: I9b4a6c0b05e6860ec71f42a235587cbb130ff9eb Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=433251
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.emf.parsley.common/src/org/eclipse/emf/parsley/EmfParsleyGuiceModule.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.parsley.common/src/org/eclipse/emf/parsley/EmfParsleyGuiceModule.java b/plugins/org.eclipse.emf.parsley.common/src/org/eclipse/emf/parsley/EmfParsleyGuiceModule.java
index d1621a086..44f8dc46f 100644
--- a/plugins/org.eclipse.emf.parsley.common/src/org/eclipse/emf/parsley/EmfParsleyGuiceModule.java
+++ b/plugins/org.eclipse.emf.parsley.common/src/org/eclipse/emf/parsley/EmfParsleyGuiceModule.java
@@ -280,7 +280,7 @@ public class EmfParsleyGuiceModule extends AbstractGenericModule {
* Default implementation is {@link WorkbenchActionBarContributor}
* @return an implementation of {@link WorkbenchActionBarContributor}
*/
- public Class<? extends WorkbenchActionBarContributor> bindEmfActionBarContributor() {
+ public Class<? extends WorkbenchActionBarContributor> bindWorkbenchActionBarContributor() {
return WorkbenchActionBarContributor.class;
}

Back to the top