Removed UserUUIDTable

This commit is contained in:
Rsl1122 2019-01-24 15:22:03 +02:00
parent 071645e1f3
commit 18e39d1394
9 changed files with 8 additions and 40 deletions

View File

@ -50,7 +50,7 @@ import java.util.*;
*
* @author Rsl1122
*/
public class GeoInfoTable extends UserUUIDTable {
public class GeoInfoTable extends Table {
public static final String TABLE_NAME = "plan_ips";

View File

@ -52,7 +52,7 @@ import java.util.UUID;
*
* @author Rsl1122
*/
public class KillsTable extends UserUUIDTable {
public class KillsTable extends Table {
public static final String TABLE_NAME = "plan_kills";

View File

@ -47,7 +47,7 @@ import java.util.*;
*
* @author Rsl1122
*/
public class NicknamesTable extends UserUUIDTable {
public class NicknamesTable extends Table {
public static final String TABLE_NAME = "plan_nicknames";

View File

@ -43,7 +43,7 @@ import java.util.UUID;
*
* @author Rsl1122
*/
public class PingTable extends UserUUIDTable {
public class PingTable extends Table {
public static final String TABLE_NAME = "plan_ping";

View File

@ -50,7 +50,7 @@ import java.util.stream.Collectors;
*
* @author Rsl1122
*/
public class SessionsTable extends UserUUIDTable {
public class SessionsTable extends Table {
public static final String TABLE_NAME = "plan_sessions";

View File

@ -48,7 +48,7 @@ import java.util.*;
*
* @author Rsl1122
*/
public class UserInfoTable extends UserUUIDTable {
public class UserInfoTable extends Table {
public static final String TABLE_NAME = "plan_user_info";

View File

@ -1,32 +0,0 @@
/*
* This file is part of Player Analytics (Plan).
*
* Plan is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License v3 as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Plan is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Plan. If not, see <https://www.gnu.org/licenses/>.
*/
package com.djrapitops.plan.db.sql.tables;
import com.djrapitops.plan.db.SQLDB;
/**
* Represents a Table that uses UUIDs to get their data.
*
* @author Rsl1122
*/
public abstract class UserUUIDTable extends Table {
public UserUUIDTable(String name, SQLDB db) {
super(name, db);
}
}

View File

@ -41,7 +41,7 @@ import java.util.*;
*
* @author Rsl1122
*/
public class UsersTable extends UserUUIDTable {
public class UsersTable extends Table {
public static final String TABLE_NAME = "plan_users";

View File

@ -56,7 +56,7 @@ import java.util.stream.Collectors;
*
* @author Rsl1122
*/
public class WorldTimesTable extends UserUUIDTable {
public class WorldTimesTable extends Table {
public static final String TABLE_NAME = "plan_world_times";