Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.util.Calendar;

public class Main {

    public static Calendar min(Calendar c1, Calendar c2) {
        if (c1.getTimeInMillis() <= c2.getTimeInMillis()) {
            return c1;
        } else {
            return c2;
        }
    }
}