Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.ArrayList;

import java.util.List;

public class Main {
    public static List<String> removeDuplicates(List<String> oldList) {
        List<String> newList = new ArrayList<String>();
        for (String entry : oldList) {
            if (!newList.contains(entry)) {
                newList.add(entry);
            }
        }
        return newList;
    }
}