Skip to content

Commit

Permalink
fix(android): add V8Promise constructor with existing pointer value
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Feb 17, 2021
1 parent d01e9e7 commit b1d88f9
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -24,6 +24,11 @@ public V8Promise()
super(nativeCreate());
}

public V8Promise(long ptr)
{
super(ptr);
}

@Override
public void resolve(V value)
{
Expand Down

0 comments on commit b1d88f9

Please sign in to comment.