Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
MIME4J-305 ContentUtil::decode can avoid using StringBuilder (#51)
StringBuilder is an expensive construct, we spend most of our time, for each character, ensuring the capacity of the string builder. Size being known, the operation simple, we can directly operate on top of a char array. Gains: 78%
- Loading branch information