- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
43 lines
1.1 KiB
Java
43 lines
1.1 KiB
Java
package com.vungle.ads;
|
|
|
|
import com.vungle.ads.internal.protos.Sdk;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class SingleValueMetric extends Metric {
|
|
private Long value;
|
|
|
|
/* renamed from: getValue, reason: collision with other method in class */
|
|
public final Long m3825getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
public final void setValue(Long l) {
|
|
this.value = l;
|
|
}
|
|
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public SingleValueMetric(Sdk.SDKMetric.SDKMetricType metricType) {
|
|
super(metricType);
|
|
Intrinsics.checkNotNullParameter(metricType, "metricType");
|
|
}
|
|
|
|
public final void markTime() {
|
|
this.value = Long.valueOf(System.currentTimeMillis());
|
|
}
|
|
|
|
public final void addValue(long j) {
|
|
Long l = this.value;
|
|
this.value = Long.valueOf((l != null ? l.longValue() : 0L) + j);
|
|
}
|
|
|
|
@Override // com.vungle.ads.Metric
|
|
public long getValue() {
|
|
Long l = this.value;
|
|
if (l != null) {
|
|
return l.longValue();
|
|
}
|
|
return 0L;
|
|
}
|
|
}
|