Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
// This source code is available under the terms of the Affero General Public License v3.

import java.util.HashSet;

import java.util.Set;

public class Main {
    public static <T> Set<T> makeSet() {
        return new HashSet<T>();
    }
}