Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int l2i(long paramLong) {
        if ((paramLong > 2147483647L) || (paramLong < -2147483648L))
            throw new RuntimeException(
                    "A cast to int has gone wrong. Please contact the mp4parser discussion group (" + paramLong
                            + ")");
        return (int) paramLong;
    }
}