Format. Haven't done this in awhile. Just sneak it in.

This commit is contained in:
Trent Hensler
2018-01-04 17:40:27 -08:00
parent f019c4f833
commit 5c2abb34de
24 changed files with 113 additions and 137 deletions

View File

@@ -4,7 +4,6 @@ import com.massivecraft.factions.*;
import com.massivecraft.factions.integration.Econ;
import com.massivecraft.factions.struct.Relation;
import com.massivecraft.factions.zcore.util.TL;
import com.massivecraft.factions.zcore.util.TagUtil;
import me.clip.placeholderapi.external.EZPlaceholderHook;
import org.apache.commons.lang.time.DurationFormatUtils;
import org.bukkit.Bukkit;
@@ -21,7 +20,7 @@ public class PlaceholderAPIManager extends EZPlaceholderHook {
@Override
public String onPlaceholderRequest(Player player, String placeholder) {
if(player == null || placeholder == null) {
if (player == null || placeholder == null) {
return "";
}
@@ -46,7 +45,7 @@ public class PlaceholderAPIManager extends EZPlaceholderHook {
return String.valueOf(fPlayer.getKills());
case "player_deaths":
return String.valueOf(fPlayer.getDeaths());
// Then Faction stuff
// Then Faction stuff
case "faction_name":
return faction.getTag();
case "faction_power":

View File

@@ -94,9 +94,9 @@ public abstract class SpiralTask implements Runnable {
/*
* Below are the guts of the class, which you normally wouldn't need to mess with.
*/
/*
* Below are the guts of the class, which you normally wouldn't need to mess with.
*/
public final void setTaskID(int ID) {
if (ID == -1) {