--- old/modules/javafx.graphics/src/main/java/javafx/scene/Node.java 2016-08-08 12:10:59.000000000 -0700 +++ new/modules/javafx.graphics/src/main/java/javafx/scene/Node.java 2016-08-08 12:10:59.000000000 -0700 @@ -1199,7 +1199,7 @@ * @return the id assigned to this {@code Node} using the {@code setId} * method or {@code null}, if no id has been assigned. * @defaultValue null - * @see CSS Reference Guide. + * @see CSS Reference Guide */ public final String getId() { return id == null ? null : id.get(); @@ -1291,7 +1291,7 @@ * @param value The inline CSS style to use for this {@code Node}. * {@code null} is implicitly converted to an empty String. * @defaultValue empty string - * @see CSS Reference Guide. + * @see CSS Reference Guide */ public final void setStyle(String value) { styleProperty().set(value); @@ -1308,7 +1308,7 @@ * @return The inline CSS style associated with this {@code Node}. * If this {@code Node} does not have an inline style, * an empty String is returned. - * @see CSS Reference Guide. + * @see CSS Reference Guide */ public final String getStyle() { return style == null ? "" : style.get();