Format code

This commit is contained in:
2022-02-06 23:59:26 -06:00
parent cb3a6cc391
commit 917775e7e7
11 changed files with 45 additions and 13 deletions

View File

@ -13,6 +13,7 @@ public class DataUtils
{
/**
* Checks if the player has been on the server before
*
* @param uuid The unique ID of the player
* @return true if the player is registered in the database
*/
@ -30,6 +31,7 @@ public class DataUtils
/**
* Gets a player from cache or from the database
*
* @param uuid The unique ID of the player
* @return a PlexPlayer object
* @see PlexPlayer
@ -53,6 +55,7 @@ public class DataUtils
/**
* Gets a player from cache or from the database
*
* @param name Username of the player
* @return a PlexPlayer object
* @see PlexPlayer
@ -64,6 +67,7 @@ public class DataUtils
/**
* Updates a player's information in the database
*
* @param plexPlayer The PlexPlayer to update
* @see PlexPlayer
*/
@ -81,6 +85,7 @@ public class DataUtils
/**
* Inserts a player's information in the database
*
* @param plexPlayer The PlexPlayer to insert
* @see PlexPlayer
*/

View File

@ -29,6 +29,7 @@ public class MongoPlayerData
/**
* Checks whether the player exists in mongo's database
*
* @param uuid The unique ID of the player
* @return true if the player was found
*/
@ -42,6 +43,7 @@ public class MongoPlayerData
/**
* Gets the player from cache or from mongo's database
*
* @param uuid The unique ID of the player
* @return a PlexPlayer object
* @see PlexPlayer
@ -59,6 +61,7 @@ public class MongoPlayerData
/**
* Updates a player's information in the mongo database
*
* @param player The PlexPlayer object
* @see PlexPlayer
*/
@ -84,6 +87,7 @@ public class MongoPlayerData
/**
* Saves the player's information in the database
*
* @param plexPlayer The PlexPlayer object
* @see PlexPlayer
*/

View File

@ -22,6 +22,7 @@ public class SQLPlayerData
/**
* Checks if a player exists in the SQL database
*
* @param uuid The unique ID of the player
* @return true if the player was found in the database
*/
@ -43,6 +44,7 @@ public class SQLPlayerData
/**
* Gets the player from cache or from the SQL database
*
* @param uuid The unique ID of the player
* @return a PlexPlayer object
* @see PlexPlayer
@ -92,6 +94,7 @@ public class SQLPlayerData
/**
* Updates a player's information in the SQL database
*
* @param player The PlexPlayer object
* @see PlexPlayer
*/
@ -119,6 +122,7 @@ public class SQLPlayerData
/**
* Inserts the player's information in the database
*
* @param player The PlexPlayer object
* @see PlexPlayer
*/