Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 *  oxPush2 is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text.
 *
 *  Copyright (c) 2014, Gluu
 */

import java.util.Arrays;

public class Main {
    public static int hash(Object... values) {
        return Arrays.hashCode(values);
    }
}