no need to pass env to ref method , we can directly use getCurrentEnv()

Summary: We can use getCurrentEnv() instead of passing environment variable around

Reviewed By: amir-shalem

Differential Revision: D17842042

fbshipit-source-id: 185b174ae7c08e746bc76c0600c2e326b15c4993
This commit is contained in:
Sidharth Guglani
2019-10-10 05:31:30 -07:00
committed by Facebook Github Bot
parent 050893f15a
commit 869a33eb13
2 changed files with 3 additions and 3 deletions

View File

@@ -21,8 +21,7 @@ using facebook::yoga::detail::Log;
static inline ScopedLocalRef<jobject> YGNodeJobject(
YGNodeRef node,
void* layoutContext) {
return reinterpret_cast<PtrJNodeMapVanilla*>(layoutContext)
->ref(getCurrentEnv(), node);
return reinterpret_cast<PtrJNodeMapVanilla*>(layoutContext)->ref(node);
}
static inline YGNodeRef _jlong2YGNodeRef(jlong addr) {