mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-18 08:15:12 +01:00
Minor - fix Javadoc warnings
This commit is contained in:
parent
cf52fdac1c
commit
ea93a336c3
@ -36,6 +36,7 @@ public class PerformBackup {
|
||||
* Constructor for PerformBackup.
|
||||
*
|
||||
* @param instance AuthMe
|
||||
* @param settings The plugin settings
|
||||
*/
|
||||
public PerformBackup(AuthMe instance, NewSetting settings) {
|
||||
this.dataFolder = instance.getDataFolder();
|
||||
|
@ -11,8 +11,6 @@ import java.io.File;
|
||||
|
||||
/**
|
||||
* 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 {
|
||||
|
||||
@ -25,6 +23,7 @@ public class Messages {
|
||||
* Constructor.
|
||||
*
|
||||
* @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) {
|
||||
initializeFile(messageFile);
|
||||
|
@ -26,6 +26,7 @@ public class Management {
|
||||
* Constructor for Management.
|
||||
*
|
||||
* @param plugin AuthMe
|
||||
* @param settings The plugin settings
|
||||
*/
|
||||
public Management(AuthMe plugin, NewSetting settings) {
|
||||
this.plugin = plugin;
|
||||
|
@ -47,7 +47,8 @@ public class ProcessSyncPlayerLogin implements Runnable {
|
||||
*
|
||||
* @param player Player
|
||||
* @param plugin AuthMe
|
||||
* @param database DataSource
|
||||
* @param database DataSource
|
||||
* @param settings The plugin settings
|
||||
*/
|
||||
public ProcessSyncPlayerLogin(Player player, AuthMe plugin,
|
||||
DataSource database, NewSetting settings) {
|
||||
|
@ -39,6 +39,7 @@ public class ProcessSyncPasswordRegister implements Runnable {
|
||||
*
|
||||
* @param player Player
|
||||
* @param plugin AuthMe
|
||||
* @param settings The plugin settings
|
||||
*/
|
||||
public ProcessSyncPasswordRegister(Player player, AuthMe plugin, NewSetting settings) {
|
||||
this.m = plugin.getMessages();
|
||||
|
@ -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.
|
||||
*
|
||||
* @param configuration The file configuration
|
||||
|
Loading…
Reference in New Issue
Block a user