--- old/modules/graphics/src/main/java/javafx/scene/Node.java 2016-05-26 13:01:44.681562253 +0300 +++ new/modules/graphics/src/main/java/javafx/scene/Node.java 2016-05-26 13:01:43.589016253 +0300 @@ -983,7 +983,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(); @@ -1075,7 +1075,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); @@ -1092,7 +1092,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();