mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
429 B
HTML
10 lines
429 B
HTML
<html>
|
|
<body>
|
|
Reports redundant calls of <code>java.lang.Class</code> methods.
|
|
<p>For example, <code>Xyz.class.isInstance(object)</code> can be replaced with <code>object instanceof Xyz</code>.
|
|
The instanceof check is preferred: even though the performance will probably be the same as these methods are intrinsics,
|
|
they better indicate a static check.</p>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2018.2</small></p>
|
|
</body>
|
|
</html> |