Fixed javadoc errors

This commit is contained in:
Rsl1122 2019-10-05 11:27:19 +03:00
parent 69efa14825
commit 7581968e27
4 changed files with 7 additions and 8 deletions

View File

@ -32,7 +32,7 @@ import java.lang.annotation.Target;
* For example: * For example:
* {@code @GroupProvider public String[] getJobs(UUID playerUUID) {}} * {@code @GroupProvider public String[] getJobs(UUID playerUUID) {}}
* <p> * <p>
* Group data is parsed as Table for /server & /network page and similar to {@link StringProvider} for /player page. * Group data is parsed as Table for /server and /network page and similar to {@link StringProvider} for /player page.
* <p> * <p>
* Requires Capability {@code DATA_EXTENSION_GROUPS} * Requires Capability {@code DATA_EXTENSION_GROUPS}
* *

View File

@ -30,7 +30,6 @@ import java.util.UUID;
* Keys for the ServerContainer. * Keys for the ServerContainer.
* *
* @author Rsl1122 * @author Rsl1122
* @see com.djrapitops.plan.storage.database.databases.sql.operation.SQLFetchOps For Suppliers for each key
* @see ServerContainer For DataContainer. * @see ServerContainer For DataContainer.
*/ */
public class ServerKeys { public class ServerKeys {

View File

@ -28,7 +28,7 @@ import java.util.*;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
/** /**
* Parses JSON payload for /server-page PvP & PvE tab. * Parses JSON payload for /server-page PvP and PvE tab.
* *
* @author Rsl1122 * @author Rsl1122
*/ */

View File

@ -76,11 +76,11 @@ public interface Database {
/** /**
* Possible State changes: * Possible State changes:
* CLOSED -> PATCHING (Database init), * CLOSED to PATCHING (Database init),
* PATCHING -> OPEN (Database initialized), * PATCHING to OPEN (Database initialized),
* OPEN -> CLOSING (Database closing), * OPEN to CLOSING (Database closing),
* CLOSING -> CLOSED (Database closed), * CLOSING to CLOSED (Database closed),
* PATCHING -> CLOSED (Database closed prematurely) * PATCHING to CLOSED (Database closed prematurely)
*/ */
enum State { enum State {
CLOSED, CLOSED,