Javadoc and line spacing in BentoBox

This commit is contained in:
Florian CUNY 2018-07-31 18:14:57 +02:00
parent 3473fb48e6
commit 2210cdc2e8

View File

@ -31,11 +31,9 @@ import world.bentobox.bentobox.util.HeadGetter;
/** /**
* Main BentoBox class * Main BentoBox class
* @author tastybento * @author tastybento, Poslovitch
* @author Poslovitch
*/ */
public class BentoBox extends JavaPlugin { public class BentoBox extends JavaPlugin {
private static BentoBox instance; private static BentoBox instance;
// Databases // Databases
@ -328,15 +326,13 @@ public class BentoBox extends JavaPlugin {
/** /**
* Registers a world as a world to be covered by this plugin * Registers a world as a world to be covered by this plugin
* @param world - Bukkit over world * @param world - Bukkit overworld
* @param worldSettings - settings for this world * @param worldSettings - settings for this world
*/ */
public void registerWorld(World world, WorldSettings worldSettings) { public void registerWorld(World world, WorldSettings worldSettings) {
islandWorldManager.addWorld(world, worldSettings); islandWorldManager.addWorld(world, worldSettings);
} }
/** /**
* @return the schemsManager * @return the schemsManager
*/ */
@ -344,8 +340,6 @@ public class BentoBox extends JavaPlugin {
return schemsManager; return schemsManager;
} }
/** /**
* True if the plugin is loaded and ready * True if the plugin is loaded and ready
* @return the isLoaded * @return the isLoaded
@ -353,5 +347,4 @@ public class BentoBox extends JavaPlugin {
public boolean isLoaded() { public boolean isLoaded() {
return isLoaded; return isLoaded;
} }
} }