Here you can find the source of deleteLast(Vector list)
public static void deleteLast(Vector list)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static void deleteLast(Vector list) { int lastIndex = list.size() - 1; list.remove(lastIndex);/*from ww w. jav a2 s .c o m*/ } }