Give the SimpleCache.initialize() Thread a better name.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=119393264
This commit is contained in:
cblay 2016-04-08 11:39:41 -07:00 committed by Oliver Woodman
parent ebc5f0e7be
commit 1c0a120aeb

View File

@ -55,7 +55,7 @@ public final class SimpleCache implements Cache {
this.listeners = new HashMap<>();
// Start cache initialization.
final ConditionVariable conditionVariable = new ConditionVariable();
new Thread() {
new Thread("SimpleCache.initialize()") {
@Override
public void run() {
synchronized (SimpleCache.this) {