--- jsr166/src/main/java/util/PriorityQueue.java 2014/12/31 07:54:13 1.102 +++ jsr166/src/main/java/util/PriorityQueue.java 2015/02/17 18:55:39 1.104 @@ -26,7 +26,6 @@ package java.util; import java.util.function.Consumer; -import java.util.stream.Stream; /** * An unbounded priority {@linkplain Queue queue} based on a priority heap. @@ -436,7 +435,7 @@ public class PriorityQueue extends Ab * The following code can be used to dump the queue into a newly * allocated array of {@code String}: * - *
 {@code String[] y = x.toArray(new String[0]);}
+ *
 {@code String[] y = x.toArray(new String[0]);}
* * Note that {@code toArray(new Object[0])} is identical in function to * {@code toArray()}.