src/java.base/share/classes/java/util/PriorityQueue.java
changeset 58520 e036ee8bae56
parent 57956 e0b8b019d2f5
child 58679 9c3209ff7550
equal deleted inserted replaced
58519:6e017b301287 58520:e036ee8bae56
   109 
   109 
   110     /**
   110     /**
   111      * The comparator, or null if priority queue uses elements'
   111      * The comparator, or null if priority queue uses elements'
   112      * natural ordering.
   112      * natural ordering.
   113      */
   113      */
       
   114     @SuppressWarnings("serial") // Conditionally serializable
   114     private final Comparator<? super E> comparator;
   115     private final Comparator<? super E> comparator;
   115 
   116 
   116     /**
   117     /**
   117      * The number of times this priority queue has been
   118      * The number of times this priority queue has been
   118      * <i>structurally modified</i>.  See AbstractList for gory details.
   119      * <i>structurally modified</i>.  See AbstractList for gory details.