Inspectopedia 2026.1 Help

Use optimized function from EelApi

Reports usage of standard Java I/O operations that may work inefficiently in a remote Eel environment.

When working with remote development, standard Java I/O operations like Files.readAllBytes() can be inefficient due to network communication overhead. This inspection suggests using optimized Eel API alternatives that are designed specifically for remote development scenarios.

Example:

// Inefficient for remote development: byte[] data = Files.readAllBytes(path); // Optimized Eel API: byte[] data = EelFiles.readAllBytes(path);

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

UseOptimizedEelFunctions
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Plugin DevKit | Code

Inspection ID: UseOptimizedEelFunctions

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection UseOptimizedEelFunctions

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Inspection Details

By default bundled with:

IntelliJ IDEA 2026.1, Qodana for JVM 2026.1,

Last modified: 31 March 2026