All Downloads are FREE. Search and download functionalities are using the official Maven repository.

joptsimple.internal.Objects Maven / Gradle / Ivy

There is a newer version: 6.0-alpha-3
Show newest version
package joptsimple.internal;

/**
 * @author Paul Holser
 * @version $Id: Objects.java,v 1.1 2009/10/04 00:13:41 pholser Exp $
 */
public class Objects {
    public static void ensureNotNull( Object target ) {
        if ( target == null )
            throw new NullPointerException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy