We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c11c52 commit e187cd8Copy full SHA for e187cd8
java_runtime/src/classes/java/lang/object.rs
@@ -27,8 +27,8 @@ impl Object {
27
JavaMethodProto::new("equals", "(Ljava/lang/Object;)Z", Self::equals, Default::default()),
28
JavaMethodProto::new("clone", "()Ljava/lang/Object;", Self::java_clone, MethodAccessFlags::NATIVE),
29
JavaMethodProto::new("toString", "()Ljava/lang/String;", Self::to_string, Default::default()),
30
- JavaMethodProto::new("notify", "()V", Self::notify, MethodAccessFlags::NATIVE),
31
- JavaMethodProto::new("notifyAll", "()V", Self::notify_all, MethodAccessFlags::NATIVE),
+ JavaMethodProto::new("notify", "()V", Self::notify, Default::default()),
+ JavaMethodProto::new("notifyAll", "()V", Self::notify_all, Default::default()),
32
JavaMethodProto::new("wait", "(J)V", Self::wait_long, Default::default()),
33
JavaMethodProto::new("wait", "(JI)V", Self::wait_long_int, Default::default()),
34
JavaMethodProto::new("wait", "()V", Self::wait, Default::default()),
0 commit comments