child of #14942:
check doc : https://checkstyle.org/checks/coding/variabledeclarationusagedistance.html
Declaring an unnamed variable does not place a name in scope, so the variable cannot be written or read after it is initialized, So the usage distance isn't applicable for unnamed variables. They can not be used.
child of #14942:
check doc : https://checkstyle.org/checks/coding/variabledeclarationusagedistance.html
Declaring an unnamed variable does not place a name in scope, so the variable cannot be written or read after it is initialized, So the usage distance isn't applicable for unnamed variables. They can not be used.