Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/**
 * This class is part of JCodec ( www.jcodec.org ) This software is distributed
 * under FreeBSD License
 * 
 * @author The JCodec project
 * 
 */

public class Main {
    public static void waitNoShit(Object o, int timeout) {
        try {
            o.wait(timeout);
        } catch (InterruptedException e) {
        }
    }

    public static void waitNoShit(Object o) {
        try {
            o.wait();
        } catch (InterruptedException e) {
        }
    }
}