-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge PR #1663 by @immortius - java 8 switch
- Loading branch information
Showing
7 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,9 +21,6 @@ | |
import org.terasology.input.Keyboard; | ||
import org.terasology.input.RegisterBindButton; | ||
|
||
/** | ||
* @author Florian <[email protected]> | ||
*/ | ||
@RegisterBindButton(id = "showOnlinePlayers", description = "Show online players", category = "general") | ||
@DefaultBinding(type = InputType.KEY, id = Keyboard.KeyId.TAB) | ||
public class OnlinePlayersButton extends BindButtonEvent { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,6 @@ | |
|
||
/** | ||
* Utility class. Currently only used as container for getColoredPlayerName. | ||
* | ||
* @author Florian <[email protected]> | ||
*/ | ||
public class PlayerUtil { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,6 @@ | |
|
||
/** | ||
* Overlay that lists all players that are currently online. | ||
* | ||
* @author Florian <[email protected]> | ||
*/ | ||
public class OnlinePlayersOverlay extends CoreScreenLayer { | ||
private static final Logger logger = LoggerFactory.getLogger(OnlinePlayersOverlay.class); | ||
|