Inspectopedia
 
2024.3

Field assignment can be moved to initializer

Info
New
Last modified: 03 December 2024

Suggests replacing initialization of fields using assignment with initialization in the field declaration.

Only reports if the field assignment is located in an instance or static initializer, and joining it with the field declaration is likely to be safe. In other cases, like assignment inside a constructor, the quick-fix is provided without highlighting, as the fix may change the semantics.

Example:

The quick fix moves the assigned value to the field initializer removing the class initializer if possible:

Since 2017.2