Files
openide/platform/util/base
Andrei Rybak 26d8b55820 Fix incorrect usages of Javadoc syntax {@code} and {@link} in various
Java classes.

Reviewed-by: Tagir Valeev <tagir.valeev@jetbrains.com>
PR#2520

GitOrigin-RevId: 2ace377ae2dc38b0cfe0a73bf43ac84a067b3071
2024-05-16 13:58:10 +00:00
..

The module with base utility methods.

It is supposed to be shared with other project, including non-AWT one.

Thus, the main rules of adding new method here are:

- avoid external dependencies besides collections-related (fastutil are ok; Log4j or JDOM are not ok)
- avoid dependencies on other IntelliJ-specific modules or using IntelliJ-specific classes such as Key, Registry, Disposable, ProgressManager, etc.
- avoid using AWT or Swing classes there (Icon, KeyEvent, HTMLEditorKit, etc.)