Can I please get a review of this trivial change which proposes to prevent the deprecation warning from `SourcePositions.getStartPosition()` usage?
JDK 27, through https://bugs.openjdk.org/browse/JDK-8380147, deprecated the `SourcePositions.getStartPosition(CompilationUnitTree file, Tree tree)` API. The deprecation note suggests using `SourcePositions.getStartPosition(Tree tree)`, which is what this commit does. I've verified locally that with this change the deprecation warning is no longer emitted and the build continues to complete normally. --------- - [x] I confirm that I make this contribution in accordance with the [OpenJDK Interim AI Policy](https://openjdk.org/legal/ai). ------------- Commit messages: - 8392839: Deprecation warning for SourcePositions.getStartPosition() usage when building the JDK Changes: https://git.openjdk.org/jdk/pull/33002/files Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=33002&range=00 Issue: https://bugs.openjdk.org/browse/JDK-8392839 Stats: 2 lines in 1 file changed: 0 ins; 1 del; 1 mod Patch: https://git.openjdk.org/jdk/pull/33002.diff Fetch: git fetch https://git.openjdk.org/jdk.git pull/33002/head:pull/33002 PR: https://git.openjdk.org/jdk/pull/33002
