Skip to content

Commit

Permalink
Removed unused code from ContentDisposition
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Dec 15, 2024
1 parent bf80485 commit aa7793a
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.io.ByteArrayOutputStream;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.Base64;
import java.util.BitSet;
Expand Down Expand Up @@ -256,10 +255,6 @@ public static ContentDisposition parse(String contentDisposition) {
String name = null;
String filename = null;
Charset charset = null;
Long size = null;
ZonedDateTime creationDate = null;
ZonedDateTime modificationDate = null;
ZonedDateTime readDate = null;
for (int i = 1; i < parts.size(); i++) {
String part = parts.get(i);
int eqIndex = part.indexOf('=');
Expand Down

0 comments on commit aa7793a

Please sign in to comment.