com.sucy.skill.util.Lists Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proskillapi Show documentation
Show all versions of proskillapi Show documentation
A Minecraft Bukkit plugin aiming to provide an easy code API and skill editor for all server owners to
create unique and fully custom classes and skills.
package com.sucy.skill.util;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* ProSkillAPI © 2023
* com.sucy.skill.util.Lists
*/
public class Lists {
public static List asList(final T... items) {
return new ArrayList<>(Arrays.asList(items));
}
}