Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.HashSet;

public class Main {
    @SuppressWarnings("rawtypes")
    public static HashSet filterHashSet(HashSet target) {
        if (null == target) {
            target = new HashSet();
        }
        return target;
    }
}