Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sephiroth74 committed Aug 30, 2018
1 parent 9942407 commit 2260186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void JNIGlobalRefBase::delete_reference(JNIEnv *env, jobject origin) {
JNIGlobalRefBase::JNIGlobalRefBase(JNIGlobalRefBase &&other) : JNIGlobal<jobject>() {
auto env = JNI::env();
obj_ = other.release();
assert(!ther.obj_ || env->IsSameObject(obj_, other.obj_));
assert(!other.obj_ || env->IsSameObject(obj_, other.obj_));
}

// copy assignment
Expand Down

0 comments on commit 2260186

Please sign in to comment.