Rabbit-R1/switch port/java/sources/com/google/common/hash/ImmutableSupplier.java
2024-05-21 17:08:36 -04:00

10 lines
257 B
Java

package com.google.common.hash;
import com.google.common.base.Supplier;
import com.google.errorprone.annotations.Immutable;
@Immutable
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
interface ImmutableSupplier<T> extends Supplier<T> {
}