private ByteArrayPart()

in src/main/java/org/apache/sling/servlethelpers/ByteArrayPart.java [46:55]


    private ByteArrayPart(byte[] content, String name) {
        if ( content == null )
            throw new IllegalArgumentException("content may not be null");

        if ( name == null || name.isEmpty() )
            throw new IllegalArgumentException("name may not be null or empty");

        this.content = content;
        this.name = name;
    }