mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
384 B
HTML
12 lines
384 B
HTML
<html>
|
|
<body>
|
|
Reports primitive numeric casts that would be inserted implicitly by the compiler.
|
|
Also, reports any primitive numeric casts that the compiler will remove.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>int x = (short)5; // The cast will be removed by the javac tool</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<code>int x = 5;</code>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
</body>
|
|
</html> |