Rabbit-R1/android (non root)/java/sources/com/google/common/hash/ImmutableSupplier.java

11 lines
257 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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> {
}