Removed outdated TODOs

This commit is contained in:
Rsl1122 2019-01-25 19:41:36 +02:00
parent 685c58ec42
commit afa0715416
3 changed files with 3 additions and 4 deletions

View File

@ -126,7 +126,6 @@ public class PlayerOnlineListener implements Listener {
private void actOnJoinEvent(PlayerJoinEvent event) { private void actOnJoinEvent(PlayerJoinEvent event) {
Player player = event.getPlayer(); Player player = event.getPlayer();
// TODO Move update notification to the website.
UUID uuid = player.getUniqueId(); UUID uuid = player.getUniqueId();
long time = System.currentTimeMillis(); long time = System.currentTimeMillis();

View File

@ -29,7 +29,7 @@ import java.util.UUID;
/** /**
* Operation methods for saving data. * Operation methods for saving data.
* <p> * <p>
* Note: Method names subject to change (TODO remove insert update and such) * Note: Method names subject to change
* *
* @author Rsl1122 * @author Rsl1122
*/ */

View File

@ -100,7 +100,7 @@ public class HtmlTables {
* Create a new Nickname table. * Create a new Nickname table.
* *
* @param nicknames List of {@link Nickname}s to be added to the table. * @param nicknames List of {@link Nickname}s to be added to the table.
* @param serverNames Names of the servers, for the server column. // TODO Move Server names to Nickname object. * @param serverNames Names of the servers, for the server column.
* @return a new {@link NicknameTable}. * @return a new {@link NicknameTable}.
*/ */
public TableContainer nicknameTable(List<Nickname> nicknames, Map<UUID, String> serverNames) { public TableContainer nicknameTable(List<Nickname> nicknames, Map<UUID, String> serverNames) {
@ -134,7 +134,7 @@ public class HtmlTables {
/** /**
* Create a new Session table for a server. * Create a new Session table for a server.
* *
* @param playerNames Map of UUID - Name pairs of the players. // TODO Move Player names to Session object. * @param playerNames Map of UUID - Name pairs of the players.
* @param sessions List of {@link Session}s that occurred on the server. * @param sessions List of {@link Session}s that occurred on the server.
* @return a new {@link ServerSessionTable}. * @return a new {@link ServerSessionTable}.
*/ */