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%
1 file changed