Skip to content

Commit

Permalink
Additional performance tweak for BZ 68558
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Feb 12, 2024
1 parent ddd3407 commit b5ab2fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/org/apache/tomcat/util/http/MimeHeaders.java
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ public boolean hasMoreElements() {
public String nextElement() {
MessageBytes current = next;
findNext();
return current.toString();
return current.toStringType();
}
}

Expand Down

0 comments on commit b5ab2fb

Please sign in to comment.