Java tutorial
//package com.java2s; import java.util.List; public class Main { /** * fromIndex, inclusive, * and toIndex, exclusive */ public static <E> void removeLastElements(List<E> list, int fromIdx) { list.subList(fromIdx, list.size()).clear(); } }