mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
20 lines
352 B
Java
20 lines
352 B
Java
package io.sentry.util;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Pair<A, B> {
|
|
private final A first;
|
|
private final B second;
|
|
|
|
public A getFirst() {
|
|
return this.first;
|
|
}
|
|
|
|
public B getSecond() {
|
|
return this.second;
|
|
}
|
|
|
|
public Pair(A a, B b) {
|
|
this.first = a;
|
|
this.second = b;
|
|
}
|
|
}
|