Here you can find the source of removeRepeat(List
public static <T> List<T> removeRepeat(List<T> list)
//package com.java2s; //License from project: Apache License import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Map; public class Main { public static <T> List<T> removeRepeat(List<T> list) { if (isEmpty(list)) { return list; }//from w w w . java2 s .c o m List<T> result = new ArrayList<T>(); for (T e : list) { if (!result.contains(e)) { result.add(e); } } return result; } public static <T> boolean isEmpty(Collection<T> col) { if (col == null || col.isEmpty()) { return true; } return false; } public static <K, V> boolean isEmpty(Map<K, V> map) { if (map == null || map.isEmpty()) { return true; } return false; } }