Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.SortedSet;

import java.util.TreeSet;

public class Main {

    public static final <E> SortedSet<E> newTreeSet() {
        return new TreeSet<E>();
    }
}