Example usage for org.springframework.util Assert subclass-usage

List of usage examples for org.springframework.util Assert subclass-usage

Introduction

In this page you can find the example usage for org.springframework.util Assert subclass-usage.

Usage

From source file org.kuali.maven.wagon.auth.Assert.java

public class Assert extends org.springframework.util.Assert {

    public static void noNulls(Object... objects) {
        for (Object object : objects) {
            notNull(object);
        }