Skip to content

Commit

Permalink
8240451: JavaFX javadoc build fails with JDK 14
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrushforth committed Mar 3, 2020
1 parent 960f039 commit f68f8e6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
* @see javafx.beans.property.ObjectProperty
* @see JavaBeanObjectPropertyBuilder
*
* @param T type of the wrapped {@code Object}
* @param <T> type of the wrapped {@code Object}
* @since JavaFX 2.1
*/
public final class JavaBeanObjectProperty<T> extends ObjectProperty<T> implements JavaBeanProperty<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
*
* @see JavaBeanObjectProperty
*
* @param T the type of the wrapped {@code Object}
* @param <T> the type of the wrapped {@code Object}
* @since JavaFX 2.1
*/
public final class JavaBeanObjectPropertyBuilder<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
* @see javafx.beans.property.ReadOnlyObjectProperty
* @see ReadOnlyJavaBeanObjectPropertyBuilder
*
* @param T the type of the wrapped {@code Object}
* @param <T> the type of the wrapped {@code Object}
* @since JavaFX 2.1
*/
public final class ReadOnlyJavaBeanObjectProperty<T> extends ReadOnlyObjectPropertyBase<T> implements ReadOnlyJavaBeanProperty<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
*
* @see ReadOnlyJavaBeanObjectProperty
*
* @param T the type of the wrapped {@code Object}
* @param <T> the type of the wrapped {@code Object}
* @since JavaFX 2.1
*/
public final class ReadOnlyJavaBeanObjectPropertyBuilder<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
/**
* A writable typed value.
*
* @param T
* The type of the wrapped value
* @param <T> the type of the wrapped value
*
* @see WritableValue
*
Expand Down

0 comments on commit f68f8e6

Please sign in to comment.