Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2013-12-17 13:45:10 +0000
committerTom Schindl2013-12-17 13:45:10 +0000
commit7b3f5f597ac6ba12d2abea5f8cce6fde1307969b (patch)
treea756ea13f2d8fcc13f49ed313c22d283e673f43e
parent662d7ee65b12017752b543aa9fd2fc7e4d804539 (diff)
downloadorg.eclipse.efxclipse-7b3f5f597ac6ba12d2abea5f8cce6fde1307969b.tar.gz
org.eclipse.efxclipse-7b3f5f597ac6ba12d2abea5f8cce6fde1307969b.tar.xz
org.eclipse.efxclipse-7b3f5f597ac6ba12d2abea5f8cce6fde1307969b.zip
fixed compiler error after upgrade to 2.5
-rw-r--r--bundles/tooling/org.eclipse.fx.ide.fxml.compiler/src/org/eclipse/fx/ide/fxml/compiler/FXMLSaxHandler.xtend2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/tooling/org.eclipse.fx.ide.fxml.compiler/src/org/eclipse/fx/ide/fxml/compiler/FXMLSaxHandler.xtend b/bundles/tooling/org.eclipse.fx.ide.fxml.compiler/src/org/eclipse/fx/ide/fxml/compiler/FXMLSaxHandler.xtend
index 33d21e09f..117745e93 100644
--- a/bundles/tooling/org.eclipse.fx.ide.fxml.compiler/src/org/eclipse/fx/ide/fxml/compiler/FXMLSaxHandler.xtend
+++ b/bundles/tooling/org.eclipse.fx.ide.fxml.compiler/src/org/eclipse/fx/ide/fxml/compiler/FXMLSaxHandler.xtend
@@ -271,7 +271,7 @@ class FXMLSaxHandler extends DefaultHandler {
return;
}
val o = stack.pop
- if( ! stack.empty && o instanceof Element ) {
+ if( ! stack.isEmpty && o instanceof Element ) {
if( stack.peek instanceof Element ) {
(stack.peek as Element).defaultChildren += o as Element
} if( stack.peek instanceof StaticCallValueProperty ) {

Back to the top