Fix crash on startup in pre 1.5 VMs when XMLBeans not available

This commit is contained in:
inonit%inonit.com 2007-04-14 00:48:13 +00:00
Родитель 966e7ddc26
Коммит 9abd299845
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -203,7 +203,7 @@ public class ScriptRuntime {
NativeCall.init(scope, sealed);
NativeScript.init(scope, sealed);
boolean withXml = cx.hasFeature(Context.FEATURE_E4X);
boolean withXml = cx.hasFeature(Context.FEATURE_E4X) && cx.getE4xImplementationFactory() != null;
for (int i = 0; i != lazilyNames.length; i += 2) {
String topProperty = lazilyNames[i];