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

package com.nimbusds.jose.shaded.gson.internal;

public final class GsonPreconditions
{
    private GsonPreconditions() {
        throw new UnsupportedOperationException();
    }
    
    @Deprecated
    public static <T> T checkNotNull(final T obj) {
        if (obj == null) {
            throw new NullPointerException();
        }
        return obj;
    }
    
    public static void checkArgument(final boolean condition) {
        if (!condition) {
            throw new IllegalArgumentException();
        }
    }
}
