mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-03-10 22:01:00 +01:00
Remove some more deprecated methods
This commit is contained in:
parent
f064997840
commit
401028333e
@ -119,28 +119,4 @@ public class Log {
|
||||
public static void toLog(String source, Collection<Throwable> e) {
|
||||
Plan.getInstance().getPluginLogger().toLog(source, e);
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs a message to the a given file with a timestamp.
|
||||
*
|
||||
* @param message Message to log to Errors.txt [timestamp] Message
|
||||
* @param filename Name of the file to write to.
|
||||
* @deprecated Should no longer be used, may break other log handling mechanisms.
|
||||
* If exception requires additional information it should be placed in the source string.
|
||||
*/
|
||||
@Deprecated
|
||||
public static void toLog(String message, String filename) {
|
||||
Plan.getInstance().getPluginLogger().toLog(message, filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to get the name for the error log file.
|
||||
*
|
||||
* @return Name of the error log file.
|
||||
* @deprecated Should no longer be used, Errors.txt is handled by a separate class.
|
||||
*/
|
||||
@Deprecated
|
||||
public static String getErrorsFilename() {
|
||||
return Plan.getInstance().getPluginLogger().getErrorsFilename();
|
||||
}
|
||||
}
|
||||
|
@ -33,22 +33,10 @@ public abstract class Importer {
|
||||
/**
|
||||
* Constructor.
|
||||
*/
|
||||
public Importer() {
|
||||
Importer() {
|
||||
info = "No info specified";
|
||||
}
|
||||
|
||||
/**
|
||||
* Import data from users.
|
||||
*
|
||||
* @param uuids UUIDs of players to import
|
||||
* @return Success of import
|
||||
* @deprecated Use importData(Collection, String...) instead (new system)
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean importData(Collection<UUID> uuids) {
|
||||
return importData(uuids, new String[0]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Method used for the import.
|
||||
* <p>
|
||||
@ -157,19 +145,6 @@ public abstract class Importer {
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
/**
|
||||
* Import data of a single player.
|
||||
*
|
||||
* @param uuid UUID of the player
|
||||
* @return HandlingInfo used to modify saved userdata.
|
||||
* @deprecated Deprecated (new system), use importData(UUID, String...)
|
||||
* instead
|
||||
*/
|
||||
@Deprecated
|
||||
public HandlingInfo importData(UUID uuid) {
|
||||
return importData(uuid, new String[0]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Method used for getting the HandlingInfo object for the import data.
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user