Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java
index c7cee0db8ab..915b4572e61 100644
--- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/interchange/util/InterchangeXMLProcessor.java
@@ -27,6 +27,7 @@ import org.eclipse.papyrus.eastadl.interchange.InterchangePackage;
* This class contains helper methods to serialize and deserialize XML documents
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
+ *
* @generated
*/
public class InterchangeXMLProcessor extends XMLProcessor {
@@ -34,6 +35,7 @@ public class InterchangeXMLProcessor extends XMLProcessor {
/**
* Public constructor to instantiate the helper.
* <!-- begin-user-doc --> <!-- end-user-doc -->
+ *
* @generated
*/
public InterchangeXMLProcessor() {
@@ -49,7 +51,7 @@ public class InterchangeXMLProcessor extends XMLProcessor {
*/
@Override
protected Map<String, Resource.Factory> getRegistrations() {
- if (registrations == null) {
+ if(registrations == null) {
super.getRegistrations();
registrations.put(XML_EXTENSION, new InterchangeResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new InterchangeResourceFactoryImpl());

Back to the top