Avoid unnecessary object extend

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: java-code-style/extends-object

Language: Java

Severity: Notice

Category: Code Style

Description

A class implicitly extends Object. As a result, there is no need to extend it.

Non-Compliant Code Examples

public class Foo extends Object {} // no need to extend Object

Compliant Code Examples

public class Foo {}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis