Message-ID: From: "aclfe (@aclfe)" To: "pgjdbc/pgjdbc" Date: Sun, 01 Feb 2026 14:14:17 +0000 Subject: [pgjdbc/pgjdbc] PR #3922: style: fix lambda argument indentation for checkstyle compliance List-Id: X-GitHub-Author-Id: 210241585 X-GitHub-Author-Login: aclfe X-GitHub-Issue: 3922 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/3922 Content-Type: text/plain; charset=utf-8 Correct indentation of lambda arguments from level 20 to level 16 in ServerVersionCondition to comply with checkstyle Indentation rules. This resolves CI checkstyle failures. Related to #18784 * [X] Have you followed the guidelines in our [Contributing](https://github.com/pgjdbc/pgjdbc/blob/master/CONTRIBUTING.md) document? - Yes. I checked the commit rules and made it follow CONTRIBUTING.md's styles * [X] Have you checked to ensure there aren't other open [Pull Requests](../../pulls) for the same update/change? - Yes --- Checkstyle https://github.com/checkstyle/checkstyle/pull/18784 is working on a pull request to fix false negatives in indentation for lambda arguments. The CI job [no-error-pgjdbc](https://app.circleci.com/pipelines/github/checkstyle/checkstyle/41134/workflows/98b89a52-c66b-43d2-9a07-267d36663cda/jobs/1290276) failed after pointing indentation error in the targeted file. Making a simple fix in indentation to let CI pass.