[GitHub] commons-lang pull request: Changes in Capitalize methods in WordUt...

2015-07-02 Thread kaching88
Github user kaching88 commented on the pull request: https://github.com/apache/commons-lang/pull/102#issuecomment-118193031 Removed methods was a overloads which points to capitalize and uncapitalize method. As we can see capitalize and uncapitalize methods have (String,char...) param

[GitHub] commons-lang pull request: LANG-1146 Add helper method to SystemUt...

2015-07-02 Thread gliptak
GitHub user gliptak opened a pull request: https://github.com/apache/commons-lang/pull/103 LANG-1146 Add helper method to SystemUtils.java for zOS identification You can merge this pull request into a Git repository by running: $ git pull https://github.com/gliptak/commons-lan

[jira] [Commented] (LANG-1146) zOS identification in SystemUtils

2015-07-02 Thread ASF GitHub Bot (JIRA)
[ https://issues.apache.org/jira/browse/LANG-1146?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14612589#comment-14612589 ] ASF GitHub Bot commented on LANG-1146: -- GitHub user gliptak opened a pull request:

[GitHub] commons-lang pull request: Changes in Capitalize methods in WordUt...

2015-07-02 Thread joehni
Github user joehni commented on the pull request: https://github.com/apache/commons-lang/pull/102#issuecomment-118096586 You cannot simply remove methods, because it breaks binary compatibility. All you can do is deprecating them now and remove them in the next major version. --- If