Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Reduce empty array allocations | Andrey Turbanov | 2021-12-18 | 1 | -6/+7 |
| | |||||
* | Replace uses of StringBuffer with StringBuilder. | Andrey Turbanov | 2021-11-20 | 2 | -3/+3 |
| | | | | StringBuffer is a legacy synchronized class. StringBuilder is a direct replacement to StringBuffer which generally have better performance. | ||||
* | Upgrade license from CPLv1/EPLv1 to EPLv2 | Alexander Kriegisch | 2021-06-04 | 23 | -133/+133 |
| | | | | | | | This was required by the Eclipse team as one precondition for the next release. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Remove JRockit LTW support, particularly JRockitAgent | Alexander Kriegisch | 2021-04-10 | 5 | -367/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | In two places, the documentation now contains this text: "Since AspectJ 1.9.7, the obsolete Oracle/BEA JRockit agent is no longer part of AspectJ. JRockit JDK never supported Java versions higher than 1.6. Several JRockit JVM features are now part of HotSpot and tools like Mission Control available for OpenJDK and Oracle JDK." The decision to drop JRockit support was made during a discussion between Alexander Kriegisch and Andy Clement: Andy Clement wrote on 26 Mar 2021: > Yes I think so. > > > Alexander Kriegisch wrote on 26 Mar 2021: > >> https://en.wikipedia.org/wiki/JRockit >> >> Can we get rid of that? AspectJ requires Java 8, JRockit never >> supported more than Java 6. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Move lib/ext/jrockit to just lib/jrockit | Alexander Kriegisch | 2021-04-10 | 1 | -1/+1 |
| | | | | | | | | It was the only subdirectory under lib/ext anyway and somehow always irritating and difficult to find when just using a directory browser in the IDE. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix JRockitAgentTest.testJrockitRecursionProtection for JVM 9+ | Alexander Kriegisch | 2021-03-28 | 1 | -14/+1 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix some deprecated Java and JUnit warnings by using newer API calls | Alexander Kriegisch | 2021-03-21 | 4 | -11/+8 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix 'ajdoc' tests for Java 15 build | Alexander Kriegisch | 2021-03-14 | 1 | -3/+3 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix misplaced or incorrect javadoc tags | Jerry James | 2020-09-14 | 1 | -1/+1 |
| | |||||
* | Fix misplaced or incorrectly nested HTML tags | Jerry James | 2020-09-14 | 3 | -3/+3 |
| | |||||
* | Fix incorrect HTML entities in javadoc comments | Jerry James | 2020-09-14 | 1 | -2/+2 |
| | |||||
* | 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 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> | ||||
* | polish | Andy Clement | 2019-11-29 | 8 | -18/+16 |
| | |||||
* | fix comment | Andy Clement | 2019-11-28 | 1 | -24/+23 |
| | |||||
* | fixes for tests on windows | Andy Clement | 2019-03-04 | 1 | -2/+3 |
| | |||||
* | tidyup | Andy Clement | 2019-02-08 | 2 | -1/+6 |
| | |||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-01-31 | 2 | -37/+46 |
| | |||||
* | Merged loadtime5 into loadtime | Andy Clement | 2019-01-28 | 4 | -0/+182 |
| | |||||
* | mavenizing loadtime - wip | Andy Clement | 2019-01-28 | 6 | -62/+23 |
| | |||||
* | mavenizing loadtime - wip | Andy Clement | 2019-01-25 | 26 | -0/+2175 |
| | |||||
* | 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 |
| | |||||
* | 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 |
| |