Regalamiunsorriso/decompiled-libs/www/acxent-videoj-1.0.0/org/jcodec/common/Ints.java

10 lines
248 B
Java
Raw Normal View History

2026-04-22 18:41:37 +02:00
package org.jcodec.common;
public class Ints {
public static int checkedCast(long value) {
int result = (int)value;
if ((long)result != value)
throw new IllegalArgumentException("Out of range: " + value);
return result;
}
}