mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
11 lines
187 B
Java
11 lines
187 B
Java
package com.google.common.cache;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes2.dex */
|
|
interface LongAddable {
|
|
void add(long j);
|
|
|
|
void increment();
|
|
|
|
long sum();
|
|
}
|