Merge branch '6.0.x'

This commit is contained in:
Sam Brannen 2023-05-24 14:02:51 +02:00
commit 72152ff1f3
1 changed files with 0 additions and 2 deletions

View File

@ -807,14 +807,12 @@ public final class ContentDisposition {
@Override
public Builder filename(String filename) {
Assert.hasText(filename, "No filename");
this.filename = filename;
return this;
}
@Override
public Builder filename(String filename, Charset charset) {
Assert.hasText(filename, "No filename");
this.filename = filename;
this.charset = charset;
return this;