Commit 3fc61de7 by olly Committed by Andrew Lewis

give SimpleDecoder's thread a name.

PiperOrigin-RevId: 291401328
parent accbc5bb
......@@ -62,12 +62,13 @@ public abstract class SimpleDecoder<
for (int i = 0; i < availableOutputBufferCount; i++) {
availableOutputBuffers[i] = createOutputBuffer();
}
decodeThread = new Thread() {
@Override
public void run() {
SimpleDecoder.this.run();
}
};
decodeThread =
new Thread("SimpleDecoder:Decode") {
@Override
public void run() {
SimpleDecoder.this.run();
}
};
decodeThread.start();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment