[GitHub] commons-lang pull request: LANG-1091 fixes shutdown of ExecutorPoo...

2015-03-23 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/58 LANG-1091 fixes shutdown of ExecutorPools used in Tests. You can merge this pull request into a Git repository by running: $ git pull https://github.com/CodingFabian/commons-lang

[GitHub] commons-lang pull request: Fixes JavaDoc of LANG-1093

2015-03-23 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/57 Fixes JavaDoc of LANG-1093 You can merge this pull request into a Git repository by running: $ git pull https://github.com/CodingFabian/commons-lang LANG-1093-javadoc Alternatively

[GitHub] commons-lang pull request: Some minor fixup of LANG-935.

2015-03-23 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/56 Some minor fixup of LANG-935. Avoid toString() of the replacement sequence by doing it once. Avoid calculating the maximum when not needed. Fixup comment for greedy algorithm. You

[GitHub] commons-lang pull request: LANG-935 optimize lookup of translation...

2015-03-22 Thread CodingFabian
Github user CodingFabian closed the pull request at: https://github.com/apache/commons-lang/pull/50 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[GitHub] commons-lang pull request: LANG-990 support appending CharBuffer a...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/51 LANG-990 support appending CharBuffer and use specialized methods StrBuilder accepts CharSequences as well as specialized instances like String, StringBuffer. If you force one of these

[GitHub] commons-lang pull request: LANG-935 optimize lookup of translation...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/50 LANG-935 optimize lookup of translations by LookupTranslator The previous implementation retrieved substrings from the input and checked if it had an replacement for it. The problem

[GitHub] commons-lang pull request: LANG-877 removes unnecessary string all...

2015-03-13 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/49 LANG-877 removes unnecessary string allocation and improves hex writing. Removes temporary allocation of char arrays and Strings from unicode escaping. This roughly doubles the

[GitHub] commons-lang pull request: LANG-1093 - Add ClassUtils.getAbbreviat...

2015-03-12 Thread CodingFabian
GitHub user CodingFabian opened a pull request: https://github.com/apache/commons-lang/pull/48 LANG-1093 - Add ClassUtils.getAbbreviatedName() getAbbreviatedName() allows to create a short version of a class name. It accepts a parameter which gives the desired length, but