1
0
mirror of https://github.com/ultrasonic/ultrasonic synced 2025-02-17 04:00:39 +01:00

Rename ImageLoader threads

This commit is contained in:
Joshua Bahnsen 2014-02-09 23:42:52 -07:00
parent 687d8fcdc4
commit 5772c231f6

View File

@ -102,7 +102,7 @@ public class ImageLoader implements Runnable
for (int i = 0; i < this.concurrency; i++) for (int i = 0; i < this.concurrency; i++)
{ {
Thread thread = new Thread(this, String.format("ImageLoader [%d]", i)); Thread thread = new Thread(this, String.format("ImageLoader_%d", i));
threads.add(thread); threads.add(thread);
thread.start(); thread.start();
} }