mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 06:36:17 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
19 lines
517 B
HTML
19 lines
517 B
HTML
<html>
|
|
<body>
|
|
Reports deprecated classes, methods, and fields that are used in your code nonetheless.
|
|
<p>Example:</p>
|
|
|
|
<pre><code>
|
|
class MyCode {
|
|
@Deprecated
|
|
void oldMethod() {}// warning: "Deprecated member is still used"
|
|
|
|
void newMethod() {
|
|
oldMethod(); // forgotten usage
|
|
}
|
|
}
|
|
</code></pre>
|
|
<p>Usages within deprecated elements are ignored.</p>
|
|
<p><b>NOTE:</b> Due to performance reasons, a non-private member is checked only when its name rarely occurs in the project.</p>
|
|
</body>
|
|
</html> |