mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
410 B
HTML
17 lines
410 B
HTML
<html>
|
|
<body>
|
|
Reports any classes that are explicitly declared to extend <code>java.lang.Object</code>.
|
|
<p>Such declaration is redundant and can be safely removed.</p>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
class MyClass extends Object {
|
|
}
|
|
</code></pre>
|
|
<p>The quick-fix removes the redundant <code>extends Object</code> clause:</p>
|
|
<pre><code>
|
|
class MyClass {
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |