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< ...@@ -62,12 +62,13 @@ public abstract class SimpleDecoder<
for (int i = 0; i < availableOutputBufferCount; i++) { for (int i = 0; i < availableOutputBufferCount; i++) {
availableOutputBuffers[i] = createOutputBuffer(); availableOutputBuffers[i] = createOutputBuffer();
} }
decodeThread = new Thread() { decodeThread =
@Override new Thread("SimpleDecoder:Decode") {
public void run() { @Override
SimpleDecoder.this.run(); public void run() {
} SimpleDecoder.this.run();
}; }
};
decodeThread.start(); 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