Minor - fix Javadoc warnings

This commit is contained in:
ljacqu 2016-02-11 23:09:23 +01:00
parent cf52fdac1c
commit ea93a336c3
6 changed files with 7 additions and 4 deletions

View File

@ -36,6 +36,7 @@ public class PerformBackup {
* Constructor for PerformBackup. * Constructor for PerformBackup.
* *
* @param instance AuthMe * @param instance AuthMe
* @param settings The plugin settings
*/ */
public PerformBackup(AuthMe instance, NewSetting settings) { public PerformBackup(AuthMe instance, NewSetting settings) {
this.dataFolder = instance.getDataFolder(); this.dataFolder = instance.getDataFolder();

View File

@ -11,8 +11,6 @@ import java.io.File;
/** /**
* Class for retrieving and sending translatable messages to players. * Class for retrieving and sending translatable messages to players.
* This class detects when the language settings have changed and will
* automatically update to use a new language file.
*/ */
public class Messages { public class Messages {
@ -25,6 +23,7 @@ public class Messages {
* Constructor. * Constructor.
* *
* @param messageFile The messages file to use * @param messageFile The messages file to use
* @param defaultFile The file with messages to use as default if missing
*/ */
public Messages(File messageFile, File defaultFile) { public Messages(File messageFile, File defaultFile) {
initializeFile(messageFile); initializeFile(messageFile);

View File

@ -26,6 +26,7 @@ public class Management {
* Constructor for Management. * Constructor for Management.
* *
* @param plugin AuthMe * @param plugin AuthMe
* @param settings The plugin settings
*/ */
public Management(AuthMe plugin, NewSetting settings) { public Management(AuthMe plugin, NewSetting settings) {
this.plugin = plugin; this.plugin = plugin;

View File

@ -47,7 +47,8 @@ public class ProcessSyncPlayerLogin implements Runnable {
* *
* @param player Player * @param player Player
* @param plugin AuthMe * @param plugin AuthMe
* @param database DataSource * @param database DataSource
* @param settings The plugin settings
*/ */
public ProcessSyncPlayerLogin(Player player, AuthMe plugin, public ProcessSyncPlayerLogin(Player player, AuthMe plugin,
DataSource database, NewSetting settings) { DataSource database, NewSetting settings) {

View File

@ -39,6 +39,7 @@ public class ProcessSyncPasswordRegister implements Runnable {
* *
* @param player Player * @param player Player
* @param plugin AuthMe * @param plugin AuthMe
* @param settings The plugin settings
*/ */
public ProcessSyncPasswordRegister(Player player, AuthMe plugin, NewSetting settings) { public ProcessSyncPasswordRegister(Player player, AuthMe plugin, NewSetting settings) {
this.m = plugin.getMessages(); this.m = plugin.getMessages();

View File

@ -113,7 +113,7 @@ public final class SettingsMigrationService {
} }
/** /**
* Detected deprecated {@code settings.delayJoinLeaveMessages} and inform user of new "remove join messages" * Detect deprecated {@code settings.delayJoinLeaveMessages} and inform user of new "remove join messages"
* and "remove leave messages" settings. * and "remove leave messages" settings.
* *
* @param configuration The file configuration * @param configuration The file configuration