You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (JIRA)" <ji...@apache.org> on 2019/06/11 14:26:00 UTC

[jira] [Commented] (GROOVY-9170) The method clone should be public as it implements the corresponding method from interface java.lang.Object

    [ https://issues.apache.org/jira/browse/GROOVY-9170?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16861097#comment-16861097 ] 

Eric Milles commented on GROOVY-9170:
-------------------------------------

This error comes from {{Verifier.addCovariantMethods}}.  Default dynamic, {{@CompileStatic}} and {{@TypeChecked}} all produce the same error.

> The method clone should be public as it implements the corresponding method from interface java.lang.Object
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: GROOVY-9170
>                 URL: https://issues.apache.org/jira/browse/GROOVY-9170
>             Project: Groovy
>          Issue Type: Bug
>          Components: Compiler
>    Affects Versions: 2.5.7
>            Reporter: Mauro Molinari
>            Priority: Major
>
> I have a class like the following:
> {code:groovy}
> @CompileStatic
> class MyClass implements Serializable, Cloneable {
>   @Override
>   protected Object clone() {
>     super.clone()
>   }
> }
> {code}
> When trying to compile this class I get the following error from the Groovy compiler: {{The method clone should be public as it implements the corresponding method from interface java.lang.Object}}.
> Apart from the fact that {{java.lang.Object}} is not an interface ;-) it doesn't make sense. {{java.lang.Object.clone()}} is {{protected}} so why can't I override it and keep it {{protected}}?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)