> This is an update to javac and javadoc, to introduce support for Preview
> APIs, and generally improve javac and javadoc behavior to more closely adhere
> to JEP 12.
>
> The notable changes are:
>
> * adding support for Preview APIs (javac until now supported primarily only
> preview langua
> The types of `DocTree` parameters in some methods in `TagletWriter` can be
> changed from `DocTree` to more specific subtypes. Doing so makes the code
> less prone to incorrect calls, and removes the need for downcasting the
> argument in the method bodies.
>
> This means the implementation o
On Tue, 6 Oct 2020 04:08:12 GMT, Jonathan Gibbons wrote:
> The types of `DocTree` parameters in some methods in `TagletWriter` can be
> changed from `DocTree` to more specific subtypes. Doing so makes the code
> less prone to incorrect calls, and removes the need for downcasting the
> argument