Java LinkedList.removeLast()

Java LinkedList.removeLast() is a method in the Java LinkedList class that removes and returns the last element in the list. If the list is empty, it throws a Java NoSuchElementException. Introduced in Java 1997 with Java 1.2, removeLast() is useful in deque-based data structures and applications that require efficient removal of the most recently added element.

https://docs.oracle.com/javase/8/docs/api/java/util/LinkedList.html