package com.google.common.util.concurrent;

import java.util.concurrent.Callable;

/* JADX INFO: loaded from: classes2.dex */
final class CombinedFuture$CallableInterruptibleTask extends CombinedFuture$CombinedFutureInterruptibleTask<Object> {
    private final Callable<Object> callable;
    final /* synthetic */ q this$0;

    /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
    public CombinedFuture$CallableInterruptibleTask(q qVar, o0.d dVar) {
        super(qVar);
        this.this$0 = qVar;
        this.callable = dVar;
    }

    @Override // com.google.common.util.concurrent.InterruptibleTask
    public final Object e() {
        return this.callable.call();
    }

    @Override // com.google.common.util.concurrent.InterruptibleTask
    public final String f() {
        return this.callable.toString();
    }
}
