@@ -277,11 +277,11 @@ class Definitions {
277277 pt => MethodType (List (pt.paramRefs(0 )), pt.paramRefs(0 )), Final )
278278 lazy val Object_clone = enterMethod(ObjectClass , nme.clone_, MethodType (Nil , ObjectType ), Protected )
279279 lazy val Object_finalize = enterMethod(ObjectClass , nme.finalize_, MethodType (Nil , UnitType ), Protected )
280- lazy val Object_notify = enterMethod(ObjectClass , nme.notify_, MethodType (Nil , UnitType ))
281- lazy val Object_notifyAll = enterMethod(ObjectClass , nme.notifyAll_, MethodType (Nil , UnitType ))
282- lazy val Object_wait = enterMethod(ObjectClass , nme.wait_, MethodType (Nil , UnitType ))
283- lazy val Object_waitL = enterMethod(ObjectClass , nme.wait_, MethodType (LongType :: Nil , UnitType ))
284- lazy val Object_waitLI = enterMethod(ObjectClass , nme.wait_, MethodType (LongType :: IntType :: Nil , UnitType ))
280+ lazy val Object_notify = enterMethod(ObjectClass , nme.notify_, MethodType (Nil , UnitType ), Final )
281+ lazy val Object_notifyAll = enterMethod(ObjectClass , nme.notifyAll_, MethodType (Nil , UnitType ), Final )
282+ lazy val Object_wait = enterMethod(ObjectClass , nme.wait_, MethodType (Nil , UnitType ), Final )
283+ lazy val Object_waitL = enterMethod(ObjectClass , nme.wait_, MethodType (LongType :: Nil , UnitType ), Final )
284+ lazy val Object_waitLI = enterMethod(ObjectClass , nme.wait_, MethodType (LongType :: IntType :: Nil , UnitType ), Final )
285285
286286 def ObjectMethods = List (Object_eq , Object_ne , Object_synchronized , Object_clone ,
287287 Object_finalize , Object_notify , Object_notifyAll , Object_wait , Object_waitL , Object_waitLI )
0 commit comments