--- jsr166/src/main/java/util/PriorityQueue.java 2014/12/02 05:48:28 1.101 +++ jsr166/src/main/java/util/PriorityQueue.java 2015/02/17 18:55:39 1.104 @@ -24,8 +24,8 @@ */ package java.util; + import java.util.function.Consumer; -import java.util.stream.Stream; /** * An unbounded priority {@linkplain Queue queue} based on a priority heap. @@ -435,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()}.