Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend')
-rw-r--r--plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend b/plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend
index 9905691b2..2efa27dd4 100644
--- a/plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend
+++ b/plugins/org.eclipse.etrice.core.common/src/org/eclipse/etrice/core/common/formatting2/BaseFormatter.xtend
@@ -57,8 +57,8 @@ class BaseFormatter extends AbstractFormatter2 {
}
def dispatch void format(Import it, extension IFormattableDocument document) {
- regionFor.keywords(importAccess.importKeyword_0, importAccess.modelKeyword_1_1).forEach[append[oneSpace]]
- regionFor.keyword(importAccess.fromKeyword_1_0_1).surround[oneSpace]
+ regionFor.keywords(importAccess.importKeyword_0, importAccess.modelKeyword_1_1_0).forEach[append[oneSpace]]
+ regionFor.keyword(importAccess.fromKeyword_1_0_1_0).surround[oneSpace]
eContents.forEach[format] // format children
}

Back to the top