Rename ImageLoader threads

This commit is contained in:
Joshua Bahnsen 2014-02-09 23:42:52 -07:00
parent 687d8fcdc4
commit 5772c231f6
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}