The JDK 14 javadoc will emit a warning for an `@pram` tag of a generic 
parameter if not surrounded by `<` and `>`. This will in turn fail the build, 
since we treat warnings as errors. There are 5 classes in JavaFX with this 
error. The fix is to replace `@param T` with `@param <T>` in those 5 places.


I have tested this fix using javadoc from both JDK 13 and JDK 14.

-------------

Commits:
 - f68f8e69: 8240451: JavaFX javadoc build fails with JDK 14

Changes: https://git.openjdk.java.net/jfx/pull/133/files
 Webrev: https://webrevs.openjdk.java.net/jfx/133/webrev.00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8240451
  Stats: 6 lines in 5 files changed: 0 ins; 1 del; 5 mod
  Patch: https://git.openjdk.java.net/jfx/pull/133.diff
  Fetch: git fetch https://git.openjdk.java.net/jfx pull/133/head:pull/133

PR: https://git.openjdk.java.net/jfx/pull/133

Reply via email to