Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use TreeMap to store headers #2113

Closed
wants to merge 4 commits into from

Conversation

Isira-Seneviratne
Copy link
Contributor

Use the TreeMap class to store the headers, as it allows keys to be checked case-insensitively.

@Isira-Seneviratne Isira-Seneviratne force-pushed the TreeMap branch 3 times, most recently from c61f7fa to 8fb0e17 Compare February 16, 2024 01:05
@jhy jhy self-requested a review July 1, 2024 07:03
@jhy
Copy link
Owner

jhy commented Jul 29, 2024

Hmm - this looks neater, but it changes the semantics. The LinkedHashMap implementation keeps the headers in the order they are added. But the TreeMap will sort them alphabetically. The LinkedHashMap is a deliberate choice to maintain the original order.

I thought we had tests to verify the order was maintained but I guess not. That would be good to add...

# Conflicts:
#	src/main/java/org/jsoup/helper/HttpConnection.java
@jhy
Copy link
Owner

jhy commented Dec 14, 2024

@Isira-Seneviratne I think we need to close this one, as mentioned, using a TreeMap will lose the insert order of the headers. I want to keep the insertion order so that it reflects the order that they were sent by the server.

LMK if you have another idea for the case insensitive scan.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants