mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fix Checkstyle violation
This commit is contained in:
@@ -439,7 +439,8 @@ public final class ContentDisposition {
|
||||
for (char c : filename.toCharArray()) {
|
||||
if (!escaped && c == '"') {
|
||||
sb.append("\\\"");
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
sb.append(c);
|
||||
}
|
||||
escaped = (!escaped && c == '\\');
|
||||
|
||||
Reference in New Issue
Block a user