Add thread name to TerminalConsoleWriterThread

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-12-21 12:01:52 +11:00
parent 68fb3c06e5
commit beab2a487e

View file

@ -15,6 +15,7 @@ public class TerminalConsoleWriterThread extends Thread {
private final OutputStream output;
public TerminalConsoleWriterThread(OutputStream output, ConsoleReader reader) {
super("TerminalConsoleWriter");
this.output = output;
this.reader = reader;