package g.i0;

import java.util.concurrent.ThreadFactory;

/* JADX INFO: loaded from: classes.dex */
public class d implements ThreadFactory {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final /* synthetic */ String f6164b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final /* synthetic */ boolean f6165c;

    public d(String str, boolean z) {
        this.f6164b = str;
        this.f6165c = z;
    }

    @Override // java.util.concurrent.ThreadFactory
    public Thread newThread(Runnable runnable) {
        Thread thread = new Thread(runnable, this.f6164b);
        thread.setDaemon(this.f6165c);
        return thread;
    }
}
