Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 390 Bytes

ProperCloneImplementation.md

File metadata and controls

15 lines (13 loc) · 390 Bytes

ProperCloneImplementation

Category: pmd
Rule Key: pmd:ProperCloneImplementation

⚠️ This rule is deprecated in favour of S1182.


Object clone() should be implemented with super.clone(). Example :

class Foo{
    public Object clone(){
        return new Foo(); // This is bad
    }
}