diff options
Diffstat (limited to 'plugins/org.eclipse.etrice.generator')
3 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.generator/.project b/plugins/org.eclipse.etrice.generator/.project index b81cd7c49..6d8182e0b 100644 --- a/plugins/org.eclipse.etrice.generator/.project +++ b/plugins/org.eclipse.etrice.generator/.project @@ -40,7 +40,6 @@ <nature>org.eclipse.m2e.core.maven2Nature</nature> <nature>org.eclipse.jdt.core.javanature</nature> <nature>org.eclipse.pde.PluginNature</nature> - <nature>org.eclipse.xtend.shared.ui.xtendXPandNature</nature> <nature>org.eclipse.xtext.ui.shared.xtextNature</nature> </natures> </projectDescription> diff --git a/plugins/org.eclipse.etrice.generator/META-INF/MANIFEST.MF b/plugins/org.eclipse.etrice.generator/META-INF/MANIFEST.MF index 9ab994acf..30060d745 100644 --- a/plugins/org.eclipse.etrice.generator/META-INF/MANIFEST.MF +++ b/plugins/org.eclipse.etrice.generator/META-INF/MANIFEST.MF @@ -25,3 +25,4 @@ Require-Bundle: org.eclipse.etrice.generator.base;bundle-version="2.0.0", org.eclipse.etrice.core.config Bundle-ActivationPolicy: lazy Import-Package: org.eclipse.etrice.generator.generic +Automatic-Module-Name: org.eclipse.etrice.generator diff --git a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/generic/GenericStateMachineGenerator.xtend b/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/generic/GenericStateMachineGenerator.xtend index 9d5223f6b..40ae6f7a8 100644 --- a/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/generic/GenericStateMachineGenerator.xtend +++ b/plugins/org.eclipse.etrice.generator/src/org/eclipse/etrice/generator/generic/GenericStateMachineGenerator.xtend @@ -213,5 +213,5 @@ class GenericStateMachineGenerator extends AbstractStateMachineGenerator { * @param generateImplementation or declaration only * @return the generated code */ - def public genExtra(GraphContainer gc, boolean generateImplementation) {''''''} + def genExtra(GraphContainer gc, boolean generateImplementation) {''''''} } |