Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2013-12-17 22:55:28 +0000
committerTom Schindl2013-12-17 22:55:28 +0000
commitb8042ff59df1cec84bcb56d44d6393b1a9f44105 (patch)
treec1d93facd31976520f7972b1262dd785b83bc86c
parentd41bb05c9ca5124791e102d568d18657594ab42e (diff)
downloadorg.eclipse.efxclipse-b8042ff59df1cec84bcb56d44d6393b1a9f44105.tar.gz
org.eclipse.efxclipse-b8042ff59df1cec84bcb56d44d6393b1a9f44105.tar.xz
org.eclipse.efxclipse-b8042ff59df1cec84bcb56d44d6393b1a9f44105.zip
Bug 424281 - FXMLConverter.xtend does not compile anymore on Xtend 2.5.0
-rwxr-xr-xbundles/runtime/org.eclipse.fx.formats.svg/src/org/eclipse/fx/formats/svg/converter/FXMLConverter.xtend2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/runtime/org.eclipse.fx.formats.svg/src/org/eclipse/fx/formats/svg/converter/FXMLConverter.xtend b/bundles/runtime/org.eclipse.fx.formats.svg/src/org/eclipse/fx/formats/svg/converter/FXMLConverter.xtend
index 6447ed6a9..3c8be08f1 100755
--- a/bundles/runtime/org.eclipse.fx.formats.svg/src/org/eclipse/fx/formats/svg/converter/FXMLConverter.xtend
+++ b/bundles/runtime/org.eclipse.fx.formats.svg/src/org/eclipse/fx/formats/svg/converter/FXMLConverter.xtend
@@ -271,7 +271,7 @@ class FXMLConverter {
val o = treeIt.next;
if( o instanceof CoreAttributes ) {
if( id.equals((o as CoreAttributes).id) ) {
- return o;
+ return o as SvgElement; // Workaround for for 424279
}
} else {
val eo = o as SvgElement;

Back to the top