Files
openide/java/java-impl/resources/inspectionDescriptions/ConvertToBasicLatin.html
Bas Leijdekkersandintellij-monorepo-bot fdde91f28d Java: update inspection descriptions
GitOrigin-RevId: 829a5e8f0b97a4e21dbb1f7d99ba70b777d1240f
2025-04-12 16:28:13 +00:00

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>
// &amp;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>