Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | debug for test failure under github action | Andy Clement | 2020-08-16 | 2 | -25/+32 | |
| | ||||||
* | debug for test failure under github action | Andy Clement | 2020-08-16 | 1 | -0/+2 | |
| | ||||||
* | debug for test failure under github action | Andy Clement | 2020-08-16 | 1 | -10/+11 | |
| | ||||||
* | Merge pull request #10 from larsgrefer/cleanup/pom | Andy Clement | 2020-08-16 | 1 | -1/+0 | |
|\ | | | | | Cleanup the Maven pom.xml files | |||||
| * | Remove project.parent.relative path as ../pom.xml is already the default | Lars Grefer | 2020-08-15 | 1 | -1/+0 | |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | | Merge branch 'master' into feature/collection-performance | Andy Clement | 2020-08-15 | 3 | -3/+0 | |
|\ \ | ||||||
| * | | Cleanup unused imports | Lars Grefer | 2020-08-16 | 3 | -3/+0 | |
| |/ | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* / | Collection.toArray() call style | Lars Grefer | 2020-08-15 | 1 | -2/+1 | |
|/ | | | | | | | There are two styles to convert a collection to an array: either using a pre-sized array (like c.toArray(new String[c.size()])) or using an empty array (like c.toArray(new String[0]). In older Java versions using pre-sized array was recommended, as the reflection call which is necessary to create an array of proper size was quite slow. However since late updates of OpenJDK 6 this call was intrinsified, making the performance of the empty array version the same and sometimes even better, compared to the pre-sized version. Also passing pre-sized array is dangerous for a concurrent or synchronized collection as a data race is possible between the size and toArray call which may result in extra nulls at the end of the array, if the collection was concurrently shrunk during the operation. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | Merge branch 'master' of github.com:eclipse/org.aspectj into ↵ | Lars Grefer | 2020-08-14 | 1 | -1/+1 | |
|\ | | | | | | | remove-old-version-checks | |||||
| * | Fix JRockitAgentTest for Java 9 and 10 | Lars Grefer | 2020-08-13 | 1 | -1/+1 | |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | | Remove checks for old Java Versions | Lars Grefer | 2020-08-13 | 1 | -1/+1 | |
|/ | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 4 | -34/+34 | |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 3 | -6/+6 | |
| | | | | | | Reports any String.indexOf() expressions which can be replaced with a call to the String.contains() method available in Java 5 and newer. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | 'for' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 5 | -127/+117 | |
| | | | | | | Reports for loops which iterate over collections or arrays, and can be replaced with an enhanced for loop (i.e. the foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | |||||
* | Rev to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-07-22 | 1 | -1/+1 | |
| | ||||||
* | AspectJ 1.9.6 final bitsV1_9_6 | Andy Clement | 2020-07-22 | 1 | -1/+1 | |
| | ||||||
* | polish | Andy Clement | 2019-11-29 | 8 | -18/+16 | |
| | ||||||
* | Move to 1.9.6.BUILD-SNAPSHOT version | Andy Clement | 2019-11-28 | 1 | -1/+1 | |
| | ||||||
* | 1.9.5 release versions in pomsV1_9_5 | Andy Clement | 2019-11-28 | 1 | -1/+1 | |
| | ||||||
* | fix comment | Andy Clement | 2019-11-28 | 1 | -24/+23 | |
| | ||||||
* | Update to 1.9.5.BUILD-SNAPSHOT in poms | Andy Clement | 2019-06-03 | 1 | -1/+1 | |
| | ||||||
* | 1.9.4 POMS | Andy Clement | 2019-05-10 | 1 | -1/+1 | |
| | ||||||
* | pushed versions to 1.9.4.BUILD-SNAPSHOT | Andy Clement | 2019-04-17 | 1 | -1/+1 | |
| | ||||||
* | fixes for tests on windows | Andy Clement | 2019-03-04 | 1 | -2/+3 | |
| | ||||||
* | tidyup | Andy Clement | 2019-02-08 | 3 | -72/+110 | |
| | ||||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-01-31 | 2 | -37/+46 | |
| | ||||||
* | Merged loadtime5 into loadtime | Andy Clement | 2019-01-28 | 5 | -0/+194 | |
| | ||||||
* | mavenizing loadtime - wip | Andy Clement | 2019-01-28 | 7 | -62/+28 | |
| | ||||||
* | mavenizing loadtime - wip | Andy Clement | 2019-01-25 | 32 | -43/+75 | |
| | ||||||
* | On JDK11 call the defineClass variant with a ProtectionDomain param | Andy Clement | 2019-01-11 | 1 | -4/+4 | |
| | | | | | | | | | | This alters the defineClass used when loadtime weaving and defining 'extra' classes (e.g. closures). This change causes us to call the defineClass() method variant on ClassLoader that takes a protection domain, so it should share the same protection domain as the class for which the extra class was generated. Issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=542421 | |||||
* | polishV1_9_2 | Andy Clement | 2018-10-23 | 1 | -4/+0 | |
| | ||||||
* | polish | Andy Clement | 2018-10-23 | 1 | -2/+0 | |
| | ||||||
* | Exclude delegation loader on JDK11 too (it has been renamed) | Andy Clement | 2018-10-23 | 1 | -10/+3 | |
| | ||||||
* | 1.9.2.RC1 changesV1_9_2_RC1 | Andy Clement | 2018-09-29 | 2 | -32/+131 | |
| | ||||||
* | 533038: Clear some generated class entries during class redefinition | Andy Clement | 2018-04-02 | 3 | -16/+43 | |
| | ||||||
* | switched from diamond operator | Andy Clement | 2017-10-20 | 1 | -1/+2 | |
| | ||||||
* | polish - generics | Andy Clement | 2017-09-27 | 1 | -1/+1 | |
| | ||||||
* | Polish use of Unsafe | Andy Clement | 2017-09-27 | 1 | -80/+63 | |
| | ||||||
* | first pass at using Unsafe, needs review | Andy Clement | 2017-09-27 | 1 | -31/+49 | |
| | ||||||
* | Clarified expected message | Andy Clement | 2017-09-27 | 1 | -0/+1 | |
| | ||||||
* | Use generics | Andy Clement | 2014-10-08 | 1 | -7/+8 | |
| | ||||||
* | Fix 432178: percflow concreteaspectcodegen problem | Andy Clement | 2014-04-15 | 1 | -3/+3 | |
| | ||||||
* | Upgrade to JDT 1.8.0 compiler | Andy Clement | 2014-03-18 | 1 | -3/+3 | |
| | ||||||
* | 415266: ltw jmx fix | Andy Clement | 2013-10-18 | 1 | -10/+8 | |
| | ||||||
* | Fix for 368046: exclude certain loaders | Andy Clement | 2013-10-18 | 3 | -6/+48 | |
| | ||||||
* | improved AdapterKey uniqueness - 400649 | Andy Clement | 2013-02-14 | 1 | -6/+13 | |
| | ||||||
* | 386341 | Andy Clement | 2012-10-01 | 1 | -2/+31 | |
| | ||||||
* | 389967 | Andy Clement | 2012-10-01 | 2 | -7/+7 | |
| | ||||||
* | declare annotation on type XML support | Andy Clement | 2012-04-11 | 1 | -14/+23 | |
| | ||||||
* | 375881 | Andy Clement | 2012-04-02 | 1 | -0/+291 | |
| |