Skip to content

Commit

Permalink
Removed unwanted debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
booksaw committed Dec 29, 2021
1 parent 93ea02f commit 386fdb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 114 deletions.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,9 @@ Bug Fixes:
- Fixed bug causing Worldgaurd not to enable correctly (#273)
- Fixed bug causing scoreboard teams to not be deleted properly (#289 #274)

4.3.1:
Bug Fixes:
- Removed unwanted debug output
TODO (any TODO which is not specifically code), mainly used for reminders to update documentation

Headings:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.booksaw.betterTeams</groupId>
<artifactId>BetterTeams</artifactId>
<version>4.3.0</version>
<version>4.3.1</version>
<name>BetterTeams</name>
<packaging>jar</packaging>
<description>Create teams to fight to be the best</description>
Expand Down
110 changes: 0 additions & 110 deletions pom.xml.bak

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ public String onPlaceholderRequest(Player player, @NotNull String identifier) {
if (team == null) {
return MessageManager.getMessage("placeholder.noTeam");
}
System.out.println("unformatted message: (" + MessageManager.getMessage(player, "placeholder.name") + ")");
System.out.println("formatted message: ("
+ String.format(MessageManager.getMessage(player, "placeholder.name"), team.getName()) + ")");
return String.format(MessageManager.getMessage(player, "placeholder.name"), team.getName());
} else if (identifier.equals("tag")) {
Team team = Team.getTeam(player);
Expand Down

0 comments on commit 386fdb9

Please sign in to comment.