mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-09 20:31:38 +01:00
Merge branch '3.7.0' into master
This commit is contained in:
commit
36e4a09661
@ -43,9 +43,7 @@ public enum Permissions {
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the permission node in plugin.yml.
|
||||
* <p>
|
||||
* Same as getPermission.
|
||||
* Same as {@link #getPermission()}.
|
||||
*
|
||||
* @return permission node eg. plan.inspect
|
||||
*/
|
||||
|
@ -72,7 +72,7 @@ public class Plan extends BukkitPlugin<Plan> {
|
||||
private HookHandler hookHandler; // Manages 3rd party data sources
|
||||
|
||||
private Database db;
|
||||
private HashSet<Database> databases;
|
||||
private Set<Database> databases;
|
||||
|
||||
private WebServer uiServer;
|
||||
|
||||
@ -85,8 +85,9 @@ public class Plan extends BukkitPlugin<Plan> {
|
||||
* @return API of the current instance of Plan.
|
||||
* @throws IllegalStateException If onEnable method has not been called on
|
||||
* Plan and the instance is null.
|
||||
* @throws NoClassDefFoundError If Plan is not installed.
|
||||
*/
|
||||
public static API getPlanAPI() throws IllegalStateException {
|
||||
public static API getPlanAPI() throws IllegalStateException, NoClassDefFoundError {
|
||||
Plan instance = getInstance();
|
||||
if (instance == null) {
|
||||
throw new IllegalStateException("Plugin not enabled properly, Singleton instance is null.");
|
||||
@ -110,7 +111,7 @@ public class Plan extends BukkitPlugin<Plan> {
|
||||
*/
|
||||
@Override
|
||||
public void onEnable() {
|
||||
// Sets the Required variables for RslPlugin instance to function correctly
|
||||
// Sets the Required variables for BukkitPlugin instance to function correctly
|
||||
setInstance(this);
|
||||
super.setDebugMode(Settings.DEBUG.toString());
|
||||
super.setColorScheme(new ColorScheme(Phrase.COLOR_MAIN.color(), Phrase.COLOR_SEC.color(), Phrase.COLOR_TER.color()));
|
||||
|
@ -19,7 +19,7 @@ import java.util.Map.Entry;
|
||||
*/
|
||||
public class DBUtils {
|
||||
|
||||
private static final int BATCH_SIZE = 2048;
|
||||
private static final int BATCH_SIZE = 10192;
|
||||
|
||||
/**
|
||||
* Constructor used to hide the public constructor
|
||||
|
Loading…
Reference in New Issue
Block a user