Factions/src/com/massivecraft/factions/util/MiscUtil.java
2011-07-18 22:06:02 +02:00

26 lines
403 B
Java

package com.massivecraft.factions.util;
public class MiscUtil {
// Inclusive range
public static long[] range(long start, long end) {
long[] values = new long[(int) Math.abs(end - start) + 1];
if (end < start) {
long oldstart = start;
start = end;
end = oldstart;
}
for (long i = start; i <= end; i++) {
values[(int) (i - start)] = i;
}
return values;
}
}