Skip to content

Commit

Permalink
Fix MultipartInput Javadoc (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul authored Dec 27, 2024
1 parent f908c54 commit 3c58430
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@
*
* <pre>
* try {
* MultipartInput multipartStream = new MultipartInput(input, boundary);
* MultipartInput multipartStream = MultipartInput.builder()
* .setBoundary(boundary)
* .setInputStream(input)
* .get();
* boolean nextPart = multipartStream.skipPreamble();
* OutputStream output;
* while (nextPart) {
Expand Down

0 comments on commit 3c58430

Please sign in to comment.