mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
SPIGOT-1889: Fail fast when plugin attempts to use database when not enabled.
This commit is contained in:
parent
032d1ff804
commit
84276e2247
1 changed files with 3 additions and 0 deletions
|
@ -39,6 +39,7 @@ import com.avaje.ebean.config.ServerConfig;
|
|||
import com.avaje.ebeaninternal.api.SpiEbeanServer;
|
||||
import com.avaje.ebeaninternal.server.ddl.DdlGenerator;
|
||||
import com.google.common.base.Charsets;
|
||||
import com.google.common.base.Preconditions;
|
||||
import com.google.common.io.ByteStreams;
|
||||
|
||||
/**
|
||||
|
@ -437,6 +438,8 @@ public abstract class JavaPlugin extends PluginBase {
|
|||
|
||||
@Override
|
||||
public EbeanServer getDatabase() {
|
||||
Preconditions.checkState(description.isDatabaseEnabled(), "Plugin does not have database: true in plugin.yml");
|
||||
|
||||
return ebean;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue