mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
11 lines
387 B
HTML
11 lines
387 B
HTML
<html>
|
|
<body>
|
|
Reports code on which an unchecked warning will be issued by the javac compiler.
|
|
Every unchecked warning may potentially trigger <code>ClassCastException</code> at runtime.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
List items = Arrays.asList("string", "string");
|
|
List<Integer> numbers = Collections.unmodifiableList(items); // unchecked assignment
|
|
</code></pre>
|
|
</body>
|
|
</html> |