--- jsr166/src/test/jtreg/util/Vector/LastIndexOf.java 2010/10/16 16:00:28 1.3 +++ jsr166/src/test/jtreg/util/Vector/LastIndexOf.java 2018/01/08 03:12:03 1.6 @@ -22,16 +22,16 @@ */ /* - @test - @bug 4271588 - @summary Vector.lastIndex(Object, int) used to let you look outside the - valid range in the backing array + * @test + * @bug 4271588 + * @summary Vector.lastIndex(Object, int) used to let you look outside the + * valid range in the backing array */ -import java.util.*; +import java.util.Vector; public class LastIndexOf { - public static void main(String argv[]) throws Exception { + public static void main(String[] args) throws Exception { Vector v = new Vector(10); try {