Fixed javadoc compile errors

This commit is contained in:
Rsl1122 2019-01-08 17:55:15 +02:00
parent 70dca38281
commit 5d0f03c4c1
8 changed files with 11 additions and 12 deletions

View File

@ -270,7 +270,7 @@ public final class Reflection {
* <p>
* Strings enclosed with curly brackets - such as {TEXT} - will be replaced according to the following table:
* </p>
* <table border="1">
* <table border="1" summary="Variables and description">
* <tr>
* <th>Variable</th>
* <th>Content</th>

View File

@ -39,7 +39,7 @@ import java.util.UUID;
* <p>
* Table Name: plan_commandusages
* <p>
* For contained columns {@see Col}
* For contained columns {@link Col}
*
* @author Rsl1122
*/

View File

@ -157,8 +157,10 @@ public class NicknamesTable extends UserUUIDTable {
/**
* Get nicknames of all users but doesn't map them by Server
*
* See {@link NicknamesTable#getAllNicknames}
*
* @return a {@code Map<UUID, List<Nickname>} with all nicknames of all users
* @see NicknamesTable#getAllNicknames();
*
*/
public Map<UUID, List<Nickname>> getAllNicknamesUnmapped() {
String sql = "SELECT " +

View File

@ -36,7 +36,7 @@ import java.util.List;
* <p>
* Table Name: plan_security
* <p>
* For contained columns {@see Col}
* For contained columns {@link Col}
*
* @author Rsl1122
* @see WebUser

View File

@ -35,7 +35,7 @@ import java.util.*;
* <p>
* Table Name: plan_servers
* <p>
* For contained columns {@see Col}
* For contained columns {@link Col}
*
* @author Rsl1122
* @see Server

View File

@ -38,11 +38,11 @@ import java.sql.SQLException;
import java.util.*;
/**
* Table that is in charge of storing TPS, Players Online & Performance data.
* Table that is in charge of storing TPS, Players Online and Performance data.
* <p>
* Table Name: plan_tps
* <p>
* For contained columns {@see Col}
* For contained columns {@link Col}
*
* @author Rsl1122
*/
@ -122,9 +122,6 @@ public class TPSTable extends Table {
});
}
/**
* @return @throws SQLException
*/
public List<TPS> getTPSData() {
return getTPSData(getServerUUID());
}

View File

@ -38,7 +38,7 @@ import java.util.*;
* <p>
* Table Name: plan_users
* <p>
* For contained columns {@see Col}
* For contained columns {@link Col}
*
* @author Rsl1122
*/

View File

@ -88,7 +88,7 @@ public class HtmlTables {
/**
* Create a new Kill table.
*
* @param kills List of {@link PlayerKill]s to be added to the table.
* @param kills List of {@link PlayerKill}s to be added to the table.
* @param color Color the table header should be.
* @return a new {@link KillsTable}.
*/