[GitHub] ant pull request #77: Avoid FileInputStream and FileOutputStream.

2018-11-04 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/77 Avoid FileInputStream and FileOutputStream. Avoid FileInputStream and FileOutputStream. These classes override the finalize method. As a result, their objects are only cleaned when the garbage

[GitHub] ant issue #62: Use char notation to represent a character to improve perform...

2018-02-16 Thread reudismam
Github user reudismam commented on the issue: https://github.com/apache/ant/pull/62 Actually, I do not have a documentation, but there are discussions in programming community about the benefits of this change, such as this: [https://stackoverflow.com/questions/24859500

[GitHub] ant pull request #62: Use char notation to represent a character to improve ...

2018-02-16 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/62 Use char notation to represent a character to improve performance. You can merge this pull request into a Git repository by running: $ git pull https://github.com/reudismam/ant character

[GitHub] ant pull request #61: Use the isEmpty method instead of comparing the value ...

2018-02-15 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/61 Use the isEmpty method instead of comparing the value of size() to 0. You can merge this pull request into a Git repository by running: $ git pull https://github.com/reudismam/ant size

[GitHub] ant issue #58: Use StringBuilder instead of StringBuffer as it offers high p...

2018-02-15 Thread reudismam
Github user reudismam commented on the issue: https://github.com/apache/ant/pull/58 Undo edits to src/main/org/apache/tools/ant/listener/MailLogger.java and src/main/org/apache/tools/ant/taskdefs/Parallel.java

[GitHub] ant pull request #58: Use StringBuilder instead of StringBuffer as it offers...

2018-02-05 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/58 Use StringBuilder instead of StringBuffer as it offers high performan… …ce in single thread places as it is generally the case. You can merge this pull request into a Git repository by running

[GitHub] ant pull request #56: Use equals method of a string literal to prevent NPE a...

2018-02-01 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/56 Use equals method of a string literal to prevent NPE and isEmpty() me… …thod instead of comparing a String object with an empty string. This change has already been done for some

[GitHub] ant issue #55: Use valueOf method instead of constructor since valueOf has h...

2018-01-26 Thread reudismam
Github user reudismam commented on the issue: https://github.com/apache/ant/pull/55 Thank you. Reudismam Rolim is good for me. --- - To unsubscribe, e-mail: dev-unsubscr...@ant.apache.org For additional commands, e

[GitHub] ant pull request #55: Use valueOf method instead of constructor since valueO...

2018-01-24 Thread reudismam
GitHub user reudismam opened a pull request: https://github.com/apache/ant/pull/55 Use valueOf method instead of constructor since valueOf has higher pe… …rformance. You can merge this pull request into a Git repository by running: $ git pull https://github.com/reudismam