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

@ -42,6 +42,7 @@ public class Admin
/**
* Creates an admin with the startig ADMIN rank
*
* @param uuid
* @see UUID
* @see Rank

View File

@ -19,6 +19,7 @@ import java.util.stream.Collectors;
/**
* Cached storage for Admin objects
*
* @see Admin
*/
@ -31,6 +32,7 @@ public class AdminList
/**
* Adds the admin to cache
*
* @param admin The admin object
*/
public void addToCache(Admin admin)
@ -40,6 +42,7 @@ public class AdminList
/**
* Removes an admin from the cache
*
* @param uuid The unique ID of the admin
* @see UUID
*/
@ -50,6 +53,7 @@ public class AdminList
/**
* Gathers every admin's username (cached and databsed)
*
* @return An array list of the names of every admin
*/
public List<String> getAllAdmins()