Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | try to adapt to Java10+ rapidly changing major versionsjava-10-version | Stefan Bodewig | 2017-11-29 | 14 | -107/+337 |
| | |||||
* | BZ-61718 Upgrade to 0.1.54 of Jsch library | Jaikiran Pai | 2017-11-05 | 4 | -3/+8 |
| | | | | This close #48 pull request at github/apache/ant | ||||
* | Remove the redundant nullcheck of value known to be non-null. | Kui LIU | 2017-10-15 | 1 | -1/+1 |
| | | | | | This statement contains a redundant check of a known non-null s against the constant null. http://findbugs.sourceforge.net/bugDescriptions.html#RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE | ||||
* | properly handle factory configuration exception | Stefan Bodewig | 2017-10-15 | 1 | -2/+6 |
| | | | | based on patch by Kui Liu | ||||
* | createAndSet never returns null | Stefan Bodewig | 2017-10-15 | 1 | -15/+4 |
| | | | | based on pytch by Kui Liu | ||||
* | Fix the inefficient use of keySet iterator with entrySet iterator. | Kui LIU | 2017-10-13 | 1 | -2/+3 |
| | | | | | The current source code accesses the key and value of a Hashtable entry, using a key that is retrieved from a keySet iterator. It is more efficient to use an iterator on the entrySet of the Hashtable, to avoid the Map.get(key) lookup. | ||||
* | Fix the problem of using '+=' operator to concatenate strings a in a loop. | Kui LIU | 2017-10-13 | 1 | -2/+2 |
| | | | | | | | | The method is building a String using concatenation in a loop. In each iteration, the String is converted to a StringBuilder, appended to, and converted back to a String. This can lead to a cost quadratic in the number of iterations, as the growing string is recopied in each iteration. Better performance can be obtained by using a StringBuilder explicitly. http://findbugs.sourceforge.net/bugDescriptions.html#SBSC_USE_STRINGBUFFER_CONCATENATION | ||||
* | credit Kui Liu for #41 | Stefan Bodewig | 2017-10-11 | 2 | -0/+5 |
| | |||||
* | forgot to credit George Bateman | Stefan Bodewig | 2017-10-11 | 2 | -0/+5 |
| | |||||
* | Fix the problem of instanceof test always return true. | Kui LIU | 2017-10-11 | 1 | -1/+1 |
| | | | | | This instanceof test will always return true because DataType is the superclass of variable nested's class ResourceComparator. The variable nested is not initialized, it would be better to do a null test rather than an instanceof test. http://findbugs.sourceforge.net/bugDescriptions.html#BC_VACUOUS_INSTANCEOF | ||||
* | line ends | Stefan Bodewig | 2017-09-30 | 1 | -106/+106 |
| | |||||
* | Update release notes. This closes #37 pull request at github/apache/ant | Jaikiran Pai | 2017-09-28 | 1 | -0/+5 |
| | |||||
* | BZ-60644 Skip copying files, to avoid corrupting source files, if the source ↵ | Jaikiran Pai | 2017-09-28 | 3 | -8/+147 |
| | | | | file and dest file are symlinked to each other | ||||
* | record change, add @since tags, closes #36 | Stefan Bodewig | 2017-09-28 | 3 | -1/+10 |
| | |||||
* | Fix zip-test | George Bateman | 2017-09-28 | 1 | -7/+7 |
| | |||||
* | Reverse dependancy of DateUtils on Touch | George Bateman | 2017-09-28 | 3 | -23/+55 |
| | | | | Also add test | ||||
* | Allow faking of zip entry modification times. | George Bateman | 2017-09-28 | 2 | -2/+91 |
| | | | | Adds DateUtils.parseLenientDateTime. | ||||
* | BZ-58589 Preserve last modified time (if asked for) for files uploaded by SFTP | Jaikiran Pai | 2017-09-25 | 3 | -6/+72 |
| | |||||
* | BZ-43271 BZ-59648 Change permissions on the correct remote file (path) that ↵ | Jaikiran Pai | 2017-07-23 | 4 | -5/+30 |
| | | | | was transferred, instead of accidentally changing the permissions of the directory containing the transferred file | ||||
* | add since markers, add Mark to contributors | Stefan Bodewig | 2017-07-10 | 6 | -10/+18 |
| | |||||
* | Update manual for ejbjar orion element. | Mark Niggemann | 2017-07-10 | 1 | -2/+41 |
| | |||||
* | Add Orion EJB deployment tool to EjbJar taskdef. | Mark Niggemann | 2017-07-10 | 2 | -52/+29 |
| | |||||
* | Add Orion EJB deployment tool to EjbJar taskdef. | Mark Niggemann | 2017-07-10 | 1 | -0/+102 |
| | |||||
* | add magic property that override's tstamp's idea of "now" | Stefan Bodewig | 2017-05-08 | 6 | -1/+73 |
| | | | | https://bz.apache.org/bugzilla/show_bug.cgi?id=61079 | ||||
* | fix off by one error found by Matt Benson | Stefan Bodewig | 2017-04-21 | 1 | -1/+1 |
| | |||||
* | add regexp attribute to linecontainsregexp | Stefan Bodewig | 2017-04-11 | 3 | -5/+20 |
| | | | | https://bz.apache.org/bugzilla/show_bug.cgi?id=60968 | ||||
* | fix order if sections | Stefan Bodewig | 2017-04-11 | 1 | -7/+7 |
| | |||||
* | Make GenerateKey.DistinguishedName.toString more robust | Stefan Bodewig | 2017-03-15 | 2 | -3/+16 |
| | | | | https://bz.apache.org/bugzilla/show_bug.cgi?id=60767 | ||||
* | Record new forceCsvQuoteChar by Francesco Steccanella | Stefan Bodewig | 2017-02-17 | 3 | -0/+12 |
| | | | | closes #32 | ||||
* | Added forceCsvQuoteChar option | Francesco Steccanella | 2017-02-17 | 1 | -0/+7 |
| | |||||
* | Added option to force the csv quote char | Francesco Steccanella | 2017-02-17 | 1 | -4/+14 |
| | |||||
* | Merge tag 'rel/1.9.9' into 1.9.x and bump versions | Stefan Bodewig | 2017-02-06 | 29 | -80/+83 |
|\ | |||||
| * | preparing for 1.9.9 releaserel/1.9.9ANT_199_RC1 | Stefan Bodewig | 2017-02-02 | 24 | -68/+68 |
| | | |||||
* | | can't push a detached head | Stefan Bodewig | 2017-02-02 | 1 | -1/+0 |
|/ | |||||
* | document PR 60562 as fixed | Stefan Bodewig | 2017-02-02 | 1 | -0/+6 |
| | |||||
* | trim whitespace | Stefan Bodewig | 2017-01-14 | 1 | -1/+1 |
| | |||||
* | detect solaris 10 to avoid certain POSIX expressions | Jeffrey Adamson | 2017-01-14 | 1 | -9/+30 |
| | |||||
* | Eclipse tries to write to systemClasspath - PR 60582 | Stefan Bodewig | 2017-01-13 | 2 | -1/+9 |
| | | | | thanks to @ebourg https://github.com/apache/ant/commit/984a03d1ceb6e4b5d194e4d639d0b0fca46d92be | ||||
* | Fixed a typo (instanciated -> instantiated) | Emmanuel Bourg | 2017-01-12 | 3 | -6/+6 |
| | |||||
* | Revert "replace backticks with $() - may fix PR 60562" | Stefan Bodewig | 2017-01-10 | 1 | -22/+22 |
| | | | | This reverts commit 02aedbc903570357c4caa43beb2d9e2dabd7b4fc. | ||||
* | replace backticks with $() - may fix PR 60562 | Stefan Bodewig | 2017-01-09 | 1 | -22/+22 |
| | |||||
* | remove obsolete awk escaping - related to PR 60562 | Stefan Bodewig | 2017-01-09 | 1 | -40/+4 |
| | |||||
* | happy new year | Stefan Bodewig | 2017-01-01 | 1 | -1/+1 |
| | |||||
* | Merge tag 'rel/1.9.8' into 1.9.x and bump versions | Stefan Bodewig | 2016-12-31 | 29 | -80/+83 |
|\ | | | | | | | Tagging version 1.9.8 of Ant | ||||
| * | set version numbers for 1.9.8rel/1.9.8ANT_198_RC1 | Stefan Bodewig | 2016-12-25 | 24 | -68/+68 |
| | | |||||
* | | README.html now contains the combined release notes | Stefan Bodewig | 2016-12-27 | 1 | -2/+1 |
| | | |||||
* | | fix small errors in instuctions | Stefan Bodewig | 2016-12-25 | 1 | -3/+3 |
|/ | |||||
* | stick with RuntimeExceptions to prevent recursive logging loops | Stefan Bodewig | 2016-12-22 | 4 | -7/+7 |
| | |||||
* | use better suited exceptions | Stefan Bodewig | 2016-12-22 | 9 | -17/+17 |
| | |||||
* | there is no better choice of a non-generic exception | Stefan Bodewig | 2016-12-22 | 4 | -8/+8 |
| |