fix C&P error of return value from ref_eq

This commit is contained in:
Volker Berlin 2019-09-11 20:01:42 +02:00
parent b2f1fbc195
commit 09e31f3f5a

View File

@ -110,5 +110,5 @@ public abstract class NonGC {
native static Object array_get_anyref( Object[] array, int idx );
@Import( js = "(a,b) => a === b" )
native static Object ref_eq( Object a, Object b );
native static int ref_eq( Object a, Object b );
}