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 boolean emptyHash(Hashtable hash) {
        boolean result = true;
        if ((hash != null) && (hash.size() > 0)) {
            result = false;
        }
        return result;
    }
}