Fix broken html tags in javadoc

This commit is contained in:
Maxopoly
2020-07-31 03:38:57 +02:00
parent 8f88c8919c
commit 328a92eab3
4 changed files with 4 additions and 4 deletions

View File

@@ -267,7 +267,7 @@ public class RandomSpawn extends JavaPlugin {
* The final result of these checks is returned as the set of eligible spawn
* points; from which one will ultimately be chosen and used.
*
* @author ProgrammerDan <programmerdan@gmail.com>
* @author ProgrammerDan programmerdan@gmail.com
* @param world The world to restrict the check to. Only players from that world
* are considered.
* @return The set of locations near valid spawn points; or an empty list.

View File

@@ -11,7 +11,7 @@ import org.bukkit.entity.Player;
/**
* Add a spawn point using current location and given radius / exclusion and requirements.
*
* @author ProgrammerDan <programmerdan@gmail.com>
* @author ProgrammerDan programmerdan@gmail.com
*
*/
public class AddSpawnPointCommand extends AbstractCommand{

View File

@@ -10,7 +10,7 @@ import org.bukkit.configuration.ConfigurationSection;
/**
* This command removes a named spawnpoint from the config. It matches using the "name" field in the map of the spawn point.
*
* @author ProgrammerDan <programmerdan@gmail.com>
* @author ProgrammerDan programmerdan@gmail.com
*
*/
public class RemoveSpawnPointCommand extends AbstractCommand {

View File

@@ -13,7 +13,7 @@ import org.bukkit.event.HandlerList;
* rejected, RandomSpawn will fall back on other configured methods, ultimately falling back on Minecraft default spawning
* if nothing else works.
*
* @author ProgrammerDan <programmerdan@gmail.com>
* @author ProgrammerDan programmerdan@gmail.com
*
*/
public class NewPlayerSpawn extends Event implements Cancellable {