mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
18 lines
546 B
HTML
18 lines
546 B
HTML
<html>
|
|
<body>
|
|
Reports cases in which multiple methods of a class have the names that differ only by
|
|
case. Such names may be very confusing.
|
|
<p><b>Example:</b>
|
|
<pre><code>
|
|
public int hashcode() { // reported, should be hashCode probably?
|
|
return 0;
|
|
}
|
|
</code></pre>
|
|
<p>A quick-fix that renames such methods is available only in the editor.</p>
|
|
<!-- tooltip end -->
|
|
<p>Use the <b>Ignore methods overriding/implementing a super method</b> option to ignore methods overriding or implementing a method from
|
|
the superclass.
|
|
<p>
|
|
|
|
</body>
|
|
</html> |