Skip to content

Commit

Permalink
remove xpand based Xtext2Ecore Postprocessor
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <[email protected]>
  • Loading branch information
cdietrich committed Sep 28, 2023
1 parent bd76ce4 commit 15f1ab9
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 332 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,6 @@ public void configureFilterTerminalRulesContribution(Binder binder) {

@Deprecated(forRemoval = true)
public void configureIXtext2EcorePostProcessor(Binder binder) {
try {
Class.forName("org.eclipse.xtend.expression.ExecutionContext");
binder.bind(org.eclipse.xtext.xtext.ecoreInference.IXtext2EcorePostProcessor.class)
.to(org.eclipse.xtext.xtext.ecoreInference.ProjectAwareXtendXtext2EcorePostProcessor.class);
} catch (ClassNotFoundException e) {
}
}

public Class<? extends IXtextEditorCallback> bindIXtextEditorCallback() {
Expand Down
2 changes: 0 additions & 2 deletions org.eclipse.xtext/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,6 @@ Require-Bundle: org.eclipse.emf.ecore.xmi;bundle-version="2.16.0";visibility:=re
org.objectweb.asm;bundle-version="[9.5.0,9.6.0)";resolution:=optional,
org.eclipse.emf.mwe.core;bundle-version="1.9.0";resolution:=optional;visibility:=reexport,
org.eclipse.emf.mwe.utils;bundle-version="1.9.0";resolution:=optional;visibility:=reexport,
org.eclipse.xtend;bundle-version="2.2.0";resolution:=optional,
org.eclipse.xtend.typesystem.emf;bundle-version="2.2.0";resolution:=optional,
org.eclipse.xtext.util;visibility:=reexport,
org.eclipse.core.runtime;bundle-version="3.24.100";resolution:=optional;x-installation:=greedy,
org.eclipse.xtend.lib;resolution:=optional,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,8 @@ public Class<? extends IValueConverterService> bindIValueConverterService() {
/**
* @since 2.9
*/
@SuppressWarnings({"removal","deprecation"})
@Deprecated
public void configureIXtext2EcorePostProcessor(Binder binder) {
try {
Class.forName("org.eclipse.xtend.expression.ExecutionContext");
binder.bind(org.eclipse.xtext.xtext.ecoreInference.IXtext2EcorePostProcessor.class)
.to(org.eclipse.xtext.xtext.ecoreInference.XtendXtext2EcorePostProcessor.class);
} catch (ClassNotFoundException e) {
}
}

@Override
Expand Down

This file was deleted.

0 comments on commit 15f1ab9

Please sign in to comment.