Message-ID: From: "Anmol202005 (@Anmol202005)" To: "pgjdbc/pgjdbc" Date: Sat, 15 Mar 2025 17:24:20 +0000 Subject: [pgjdbc/pgjdbc] PR #3566: Fix JavadocTagContinuationIndentation in AfterBeforeParameterResolver List-Id: X-GitHub-Author-Id: 183815727 X-GitHub-Author-Login: Anmol202005 X-GitHub-Issue: 3566 X-GitHub-Repo: pgjdbc/pgjdbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/pgjdbc/pgjdbc/pull/3566 Content-Type: text/plain; charset=utf-8 # Fix JavadocTagContinuationIndentation in AfterBeforeParameterResolver ## Summary This PR fixes JavadocTagContinuationIndentation violations in `pgjdbc/src/testFixtures/java/org/postgresql/test/impl/AfterBeforeParameterResolver.java` that will occur with the latest Checkstyle update. ## Motivation A build failure was detected in `AfterBeforeParameterResolver.java` where the Javadoc comments have inconsistent indentation, violating the `JavadocTagContinuationIndentationCheck` in the latest Checkstyle version. ## Details Corrected the indentation in Javadoc comments to comply with `JavadocTagContinuationIndentationCheck` rules. ## Implementation Notes This PR should be merged after we release the new Checkstyle version and `pgjdbc` upgrades to it. Without this change, existing code that was previously compliant may fail validation checks.