зеркало из https://github.com/mozilla/pjs.git
Fix crash on startup in pre 1.5 VMs when XMLBeans not available
This commit is contained in:
Родитель
966e7ddc26
Коммит
9abd299845
|
@ -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];
|
||||
|
|
Загрузка…
Ссылка в новой задаче