// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry.util;

import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Internal
public final class Pair<A, B>
{
    @Nullable
    private final A first;
    @Nullable
    private final B second;
    
    public Pair(@Nullable final A first, @Nullable final B second) {
        this.first = first;
        this.second = second;
    }
    
    @Nullable
    public A getFirst() {
        return this.first;
    }
    
    @Nullable
    public B getSecond() {
        return this.second;
    }
}
