httpclient5/src/main/java/org/apache/hc/client5/http/entity/mime/HttpStrictMultipart.java [63:71]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public HttpStrictMultipart(
            final Charset charset,
            final String boundary,
            final List<MultipartPart> parts,
            final String preamble,
            final String epilogue) {
        super(charset, boundary, preamble, epilogue);
        this.parts = parts;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



httpclient5/src/main/java/org/apache/hc/client5/http/entity/mime/HttpRFC6532Multipart.java [49:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public HttpRFC6532Multipart(
            final Charset charset,
            final String boundary,
            final List<MultipartPart> parts,
            final String preamble,
            final String epilogue) {
        super(charset, boundary, preamble, epilogue);
        this.parts = parts;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



