[GitHub] poi pull request #75: Replace the inefficient Number constructor with static...

2017-10-13 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/poi/pull/75 --- - To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org For additional commands, e-mail: dev-h...@poi.apache.org

[GitHub] poi pull request #75: Replace the inefficient Number constructor with static...

2017-10-12 Thread BruceKuiLiu
GitHub user BruceKuiLiu opened a pull request: https://github.com/apache/poi/pull/75 Replace the inefficient Number constructor with static Number.valueOf() method. Using new NumberConstructor(num) is guaranteed to always result in a new object whereas Number.valueOf(num) allows