Fixed Indents on all files using the reformat option and optimized imports

This commit is contained in:
Liz3
2019-03-03 04:51:21 +01:00
parent bb7d32bb92
commit c6512bf316
232 changed files with 26900 additions and 26895 deletions

View File

@@ -4,9 +4,9 @@ import com.massivecraft.factions.zcore.util.TL;
public interface EconomyParticipator extends RelationParticipator {
String getAccountId();
String getAccountId();
void msg(String str, Object... args);
void msg(String str, Object... args);
void msg(TL translation, Object... args);
void msg(TL translation, Object... args);
}

View File

@@ -5,13 +5,13 @@ import org.bukkit.ChatColor;
public interface RelationParticipator {
String describeTo(RelationParticipator that);
String describeTo(RelationParticipator that);
String describeTo(RelationParticipator that, boolean ucfirst);
String describeTo(RelationParticipator that, boolean ucfirst);
Relation getRelationTo(RelationParticipator that);
Relation getRelationTo(RelationParticipator that);
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
Relation getRelationTo(RelationParticipator that, boolean ignorePeaceful);
ChatColor getColorTo(RelationParticipator to);
ChatColor getColorTo(RelationParticipator to);
}