Back to Intellij Community

JoinDeclarationAndAssignmentJava

java/java-impl/resources/inspectionDescriptions/JoinDeclarationAndAssignmentJava.html

2025.3-rc-2206 B
Original Source

Reports variable assignments that can be joined with a variable declaration.

Example:

int x;
  x = 1;

The quick-fix converts the assignment into an initializer:

int x = 1;

New in 2018.3