You must remove the REDEFINE keyword from the required declaration. In the following example, the syntax is not valid when compiled for JVM COBOL.
class-id Animal. 01 animCat string PROPERTY. method-id animFeed. ... end method. end class. class-id Bear inherits type Animal. 01 animCat string PROPERTY REDEFINE. *> remove REDEFINE keyword method-id animFeed REDEFINE. *> remove REDEFINE keyword ... end method. end class.