On Mon, 3 Jun 2024 23:33:53 GMT, Nizar Benalla <nbena...@openjdk.org> wrote:
> method: void java.awt.geom.Path2D.Double.trimToSize(): `@since` version is 9 > instead of 10 > method: void java.awt.geom.Path2D.Float.trimToSize(): `@since` version is 9 > instead of 10 In JDK 10, a new method `trimToSize` was added to Path2D. It is marked with `@since 10`. `Path2D.Float` and `Path2D.Double` override the method or rather implement it. Does this require an explicit `@since` tag? I'm unsure about it. ------------- PR Comment: https://git.openjdk.org/jdk/pull/19192#issuecomment-2147928711