--- jsr166/src/main/java/util/PriorityQueue.java 2015/06/16 23:06:01 1.106 +++ jsr166/src/main/java/util/PriorityQueue.java 2015/09/20 16:20:21 1.107 @@ -99,7 +99,7 @@ public class PriorityQueue extends Ab /** * The number of elements in the priority queue. */ - private int size; + int size; /** * The comparator, or null if priority queue uses elements' @@ -609,7 +609,7 @@ public class PriorityQueue extends Ab * avoid missing traversing elements. */ @SuppressWarnings("unchecked") - private E removeAt(int i) { + E removeAt(int i) { // assert i >= 0 && i < size; modCount++; int s = --size; @@ -828,7 +828,7 @@ public class PriorityQueue extends Ab /** Creates new spliterator covering the given range */ PriorityQueueSpliterator(PriorityQueue pq, int origin, int fence, - int expectedModCount) { + int expectedModCount) { this.pq = pq; this.index = origin; this.fence = fence;