updated test dependencies
diff --git a/releng/jwt-tests-plugin/META-INF/MANIFEST.MF b/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
index a39f80c..7cac6fe 100644
--- a/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
+++ b/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
@@ -19,7 +19,12 @@
org.eclipse.jwt.transformations.xpdl;bundle-version="1.6.0",
org.eclipse.jwt.we.conf.model.editor;bundle-version="1.6.0",
org.eclipse.jwt.we;bundle-version="1.6.0",
- org.eclipse.jwt.branding;bundle-version="1.6.0"
+ org.eclipse.jwt.branding;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.property.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.property.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.we;bundle-version="1.6.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.jwt.tests,
diff --git a/we/jwt-we/src/org/eclipse/jwt/we/editors/WEEditor.java b/we/jwt-we/src/org/eclipse/jwt/we/editors/WEEditor.java
index 7655881..ad7aac7 100644
--- a/we/jwt-we/src/org/eclipse/jwt/we/editors/WEEditor.java
+++ b/we/jwt-we/src/org/eclipse/jwt/we/editors/WEEditor.java
@@ -1590,6 +1590,9 @@
@Override
public boolean isDirty()
{
+ if (getEditDomain() == null || getEditDomain().getCommandStack() == null)
+ return false;
+
return getEditDomain().getCommandStack().isDirty();
}