mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
fix cut-and-paste error in jnienv.cpp
release0 should call release, not acquire.
This commit is contained in:
parent
78a80534e6
commit
132f188ff0
@ -2212,7 +2212,7 @@ MonitorEnter(Thread* t, jobject o)
|
|||||||
void
|
void
|
||||||
release0(Thread* t, object o)
|
release0(Thread* t, object o)
|
||||||
{
|
{
|
||||||
return acquire(t, o);
|
return release(t, o);
|
||||||
}
|
}
|
||||||
|
|
||||||
jint JNICALL
|
jint JNICALL
|
||||||
|
Loading…
Reference in New Issue
Block a user