--- old/modules/javafx.graphics/src/main/java/javafx/animation/Transition.java 2019-02-13 15:42:01.356320600 +0200 +++ new/modules/javafx.graphics/src/main/java/javafx/animation/Transition.java 2019-02-13 15:42:00.933612400 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -52,10 +52,7 @@ * with an empty {@code String} and adds gradually letter by letter until the * full {@code String} was set when the animation finishes. * - *
- * {@code
- *
- * final String content = "Lorem ipsum";
+ * 
 {@code final String content = "Lorem ipsum";
  * final Text text = new Text(10, 20, "");
  *
  * final Animation animation = new Transition() {
@@ -71,8 +68,7 @@
  *
  * };
  *
- * animation.play();
- * }
+ * animation.play();}
* * @see Animation *