Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.Hashtable;

public class Main {
    public static Hashtable asHashtable(java.util.Map map) {
        return map instanceof Hashtable ? (Hashtable) map : new Hashtable(map);
    }
}