Inspectopedia 2025.3 Help

Field accessed in both 'synchronized' and unsynchronized contexts

Reports non-final fields that are accessed in both synchronized and non-synchronized contexts. volatile fields as well as accesses in constructors and initializers are ignored by this inspection.

Such "partially synchronized" access is often the result of a coding oversight and may lead to unexpectedly inconsistent data structures.

Example:

public class Program { Console console; // warning: Field 'console' is accessed in both synchronized and unsynchronized contexts public synchronized void execute() { console.print("running"); } public void check() { console.check(); } }

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.

FieldAccessedSynchronizedAndUnsynchronized
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 | Java | Threading issues

Use the option to specify if simple getters and setters are counted as accesses too.

Inspection ID: FieldAccessedSynchronizedAndUnsynchronized

Inspection options

Here you can find the description of settings available for the Field accessed in both 'synchronized' and unsynchronized contexts inspection, and the reference of their default values.

Simple getters and setters are considered field accesses too

Option ID:

countGettersAndSetters

Default value:

Not selected

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 FieldAccessedSynchronizedAndUnsynchronized

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 2025.3, Qodana for JVM 2025.3,

Last modified: 03 December 2025