mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-06-30 03:56:42 +00:00
Added checkstyle plugin
Moved resources to correct folder Fixed and improved build information, no longer tracking build.properties
This commit is contained in:
@ -2,6 +2,7 @@ package me.totalfreedom.totalfreedommod.rollback;
|
||||
|
||||
public enum EntryType
|
||||
{
|
||||
|
||||
BLOCK_PLACE("placed"),
|
||||
BLOCK_BREAK("broke");
|
||||
private final String action;
|
||||
|
@ -9,6 +9,7 @@ import org.bukkit.block.Block;
|
||||
|
||||
public class RollbackEntry
|
||||
{
|
||||
|
||||
// Use of primitives to decrease overhead
|
||||
public final String author;
|
||||
public final String worldName;
|
||||
|
@ -25,6 +25,7 @@ import org.bukkit.scheduler.BukkitRunnable;
|
||||
|
||||
public class RollbackManager extends AbstractService<TotalFreedomMod>
|
||||
{
|
||||
|
||||
private static final Map<String, List<RollbackEntry>> history = Maps.newHashMap();
|
||||
private static final List<String> removeHistory = Lists.newArrayList();
|
||||
|
||||
|
Reference in New Issue
Block a user