Rename ImageLoader threads
This commit is contained in:
parent
687d8fcdc4
commit
5772c231f6
|
@ -102,7 +102,7 @@ public class ImageLoader implements Runnable
|
|||
|
||||
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);
|
||||
thread.start();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue