protected void checkNotNull()

in src/main/java/org/apache/sling/servlethelpers/internalrequests/InternalRequest.java [83:87]


    protected void checkNotNull(String info, Object candidate) {
        if (candidate == null) {
            throw new IllegalArgumentException(info + " is null");
        }
    }