mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 829a5e8f0b97a4e21dbb1f7d99ba70b777d1240f
22 lines
562 B
HTML
22 lines
562 B
HTML
<html>
|
|
<body>
|
|
Reports non-Basic Latin characters in literals and comments.
|
|
The inspection provides a fix to replace such characters with Unicode escapes in literals,
|
|
and with HTML entities in comments.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
// © 2021
|
|
char c = '©';
|
|
String s = "Áî";
|
|
</code>
|
|
</pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
// &copy; 2021
|
|
char c = '\u00a9';
|
|
String s = "\u00c1\u00ee";
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
By default, this inspection does not highlight in the editor, but only provides a fix.
|
|
</body>
|
|
</html> |