You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ky...@apache.org on 2019/07/10 07:07:20 UTC

[incubator-weex] branch master updated: Do not check multi thread flag when create instance (#2667)

This is an automated email from the ASF dual-hosted git repository.

kyork pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-weex.git


The following commit(s) were added to refs/heads/master by this push:
     new 7e274f2  Do not check multi thread flag when create instance (#2667)
7e274f2 is described below

commit 7e274f2dcdad8890327047f4a5c21535b46c308d
Author: darin <dy...@qq.com>
AuthorDate: Wed Jul 10 15:07:15 2019 +0800

    Do not check multi thread flag when create instance (#2667)
---
 android/sdk/src/main/java/com/taobao/weex/WXSDKInstance.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/android/sdk/src/main/java/com/taobao/weex/WXSDKInstance.java b/android/sdk/src/main/java/com/taobao/weex/WXSDKInstance.java
index 49880c0..81b202e 100644
--- a/android/sdk/src/main/java/com/taobao/weex/WXSDKInstance.java
+++ b/android/sdk/src/main/java/com/taobao/weex/WXSDKInstance.java
@@ -572,7 +572,7 @@ public class WXSDKInstance implements IWXActivityStateListener,View.OnLayoutChan
     );
     mContainerInfo.put(WXInstanceApm.KEY_PAGE_PROPERTIES_INSTANCE_TYPE,"page");
 
-    WXBridgeManager.getInstance().checkJsEngineMultiThread();
+    // WXBridgeManager.getInstance().checkJsEngineMultiThread();
     mDisableSkipFrameworkInit = isDisableSkipFrameworkInDataRender();
   }