Ejemplo n.º 1
0
 /**
  * {@inheritDoc}
  *
  * @see java.util.NavigableSet#pollLast()
  * @since 1.6
  */
 public E pollLast() {
   Map.Entry<E, Object> entry = backingMap.pollLastEntry();
   return (null == entry) ? null : entry.getKey();
 }
Ejemplo n.º 2
0
 /** @since 1.6 */
 public E pollLast() {
   Map.Entry<E, ?> e = m.pollLastEntry();
   return (e == null) ? null : e.getKey();
 }