[GitHub] commons-lang pull request: Adding the new JsonToStringStyle to ToS...

2014-05-16 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/26 Adding the new JsonToStringStyle to ToStringStyle Implementation of `JsonToStringStyle` inside `ToStringStyle` that outputs the String representation of the object in json format

[GitHub] commons-lang pull request: Adding unwrap and unwrapFull methods to...

2014-05-15 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/25 Adding unwrap and unwrapFull methods to StringUtils Adding the following methods from `StringUtils`: * `public static String unwrap(String str, char unwrapChar)` * `public static String

[GitHub] commons-lang pull request: Adding to StringUtils truncate method a...

2014-05-13 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/24 Adding to StringUtils truncate method and test cases Adding the following methods from `StringUtils`: * `public static String truncate(final String str, final int maxWidth)` * `public

[GitHub] commons-lang pull request: Fixing NumberUtils JAVADoc of the follo...

2014-05-05 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/22 Fixing NumberUtils JAVADoc of the following methods Fixing NumberUtils comments of the following methods: * `public static long max(final long[] array)` * `public static long max

[GitHub] commons-lang pull request: Adding the maxVA and minVA methods to N...

2014-05-05 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/23 Adding the maxVA and minVA methods to NumberUtils and test methods Adding the following methods to NumberUtils: * `public static long maxVA(final long... number)` * `public static

[GitHub] commons-lang pull request: Add wrap (with String or char) to Strin...

2014-05-04 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-lang/pull/21 Add wrap (with String or char) to StringUtils Suggestion to add following methods to StringUtils * `wrap(String str, char wrapWith)` * `wrap(String str, String wrapWith)` You can

[GitHub] commons-collections pull request: Removing unnecessary method

2014-05-04 Thread thiagoh
GitHub user thiagoh opened a pull request: https://github.com/apache/commons-collections/pull/2 Removing unnecessary method Removing unnecessary method `private V put(final K key, final V value, final long now)` once the `final long now` parameter was never used