• Patch
  • Status: Closed
  • 2 Major
  • Resolution: Fixed
  • cdennis
  • Reporter: cedrik
  • October 18, 2009
  • 0
  • Watchers: 1
  • January 15, 2010
  • December 02, 2009

Description

Since we now depend on Java 5, we can replace most StringBuffer’s with StringBuilder’s for some (small) performance improvements.

Same with new Integer(i) -> Integer.valueOf(i)

Comments

Steve Harris 2009-10-21

Do we have a contributer agreement from this dude?

Chris Dennis 2009-12-02

Replaced StringBuffer with StringBuilder, and switched to valueOf methods for wrapped primitives