Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix 'ajdoc' tests for Java 15 build | Alexander Kriegisch | 2021-03-14 | 1 | -8/+8 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix incorrect HTML entities in javadoc comments | Jerry James | 2020-09-14 | 1 | -2/+2 |
| | |||||
* | Revert to 1.9.7.BUILD-SNAPSHOT | Andy Clement | 2020-08-21 | 1 | -1/+1 |
| | |||||
* | 1.9.7 milestone 1 published | Andy Clement | 2020-08-21 | 1 | -1/+1 |
| | |||||
* | Remove unnecessary interface modifiers | Lars Grefer | 2020-08-17 | 2 | -55/+55 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 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 | 1 | -1/+0 |
|\ \ | |||||
| * | | Cleanup unused imports | Lars Grefer | 2020-08-16 | 1 | -1/+0 |
| |/ | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Weaken Collection declarations | Lars Grefer | 2020-08-15 | 1 | -1/+1 |
| | | | | | | | | | | | | Reports on declarations of Collection variables made by using the collection class as the type, rather than an appropriate interface. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Redundant Collection.addAll() call | Lars Grefer | 2020-08-15 | 2 | -4/+2 |
| | | | | | | | | | | | | Reports Collection.addAll() and Map.putAll() calls after instantiation of a collection using a constructor call without arguments. Such constructs can be replaced with a single call to a parametrized constructor which simplifies code. Also for some collections the replacement might be more performant. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Collection.toArray() call style | Lars Grefer | 2020-08-15 | 1 | -1/+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> | ||||
* | lets have maven fail if those tests fail... | Andy Clement | 2020-08-14 | 3 | -32/+46 |
| | |||||
* | Merge branch 'master' of github.com:eclipse/org.aspectj into ↵ | Lars Grefer | 2020-08-14 | 7 | -118/+119 |
|\ | | | | | | | remove-old-version-checks | ||||
| * | Fix up tests and reduce verbosity on J11 | Andy Clement | 2020-08-14 | 7 | -118/+119 |
| | | |||||
* | | Remove checks for old Java Versions | Lars Grefer | 2020-08-13 | 1 | -2/+0 |
|/ | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 14 | -52/+52 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 4 | -8/+8 |
| | | | | | | 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> | ||||
* | 'while' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 1 | -3/+2 |
| | | | | | | Reports while loops which iterate over collections, and can be replaced with an enhanced for loop (i.e. foreach iteration syntax). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'for' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 9 | -38/+32 |
| | | | | | | 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 |
| | |||||
* | 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 |
| | |||||
* | 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 |
| | |||||
* | temporary fix for jdtcore deps to get mvn clean install behaving | Andy Clement | 2019-02-01 | 1 | -0/+12 |
| | |||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-01-31 | 2 | -17/+56 |
| | |||||
* | various polish to previously mavenized projects to support newer ones | Andy Clement | 2019-01-31 | 1 | -0/+17 |
| | |||||
* | mavenizing ajde.core - done | Andy Clement | 2019-01-29 | 36 | -131/+63 |
| | |||||
* | polish | Andy Clement | 2018-10-15 | 10 | -59/+92 |
| | |||||
* | Adjust how classpath entries manipulated for Java9 support | Andy Clement | 2017-10-20 | 1 | -14/+12 |
| | | | | | | | | | | | | | | | | Prior to this AspectJ would discard ignore the ClasspathEntry objects built by JDT and just work with the classpath as a string, driving the JDT FileSystem to rebuild classpath entries again at a later date using the string. This is more complex in Java9 because the string representation was losing whether some entries came in via modulepath. ClasspathEntry construction for modulepath entries is non trivial (since the module-info must be processed). The new version will cache some of the ClasspathEntry objects (those built for modulepaths) and do more work on the AspectJ side building classpath entries in general. It now passes these entries to a different FileSystem entry point rather than the entry point that takes a string path. | ||||
* | added module/modulesourcepath to compiler configuration interface | Andy Clement | 2017-10-20 | 2 | -5/+16 |
| | |||||
* | Fix classpath for tests on Java9 | Andy Clement | 2016-06-27 | 1 | -2/+10 |
| | |||||
* | Fix for building on Java8V1_8_3a | Andy Clement | 2014-10-24 | 1 | -0/+1 |
| | |||||
* | Polish generics | Andy Clement | 2014-10-07 | 15 | -47/+43 |
| | |||||
* | enabling AJDT to use annotation processors | Andy Clement | 2014-08-20 | 3 | -0/+31 |
| | |||||
* | annotation processing in aspectj | hsestupin | 2014-08-01 | 1 | -1/+1 |
| | | | | Signed-off-by: hsestupin <stupin.sergey@gmail.com> | ||||
* | Fix 415957: annotations with 1.8 flags | Andy Clement | 2013-08-27 | 1 | -3/+1 |
| | |||||
* | generics | aclement | 2011-08-16 | 6 | -447/+382 |
| | |||||
* | 353900: Java7 | aclement | 2011-08-12 | 1 | -1/+3 |
| | |||||
* | java5 module now | aclement | 2011-08-12 | 1 | -0/+1 |
| | |||||
* | generics refactoring | aclement | 2011-08-12 | 4 | -170/+136 |
| | |||||
* | generics refactoring | aclement | 2011-08-12 | 3 | -17/+18 |
| | |||||
* | minimalModel ON by default. demotion ON by default (for AJDT as well as LTW) | aclement | 2011-08-05 | 2 | -5/+7 |
| | |||||
* | 290741: encoding option on ICompilerConfiguration | aclement | 2011-04-04 | 1 | -0/+4 |
| | |||||
* | 290741: encoding option on ICompilerConfiguration | aclement | 2011-04-04 | 2 | -0/+8 |
| | |||||
* | 328649: addDependencies for Compilation Participants | aclement | 2010-10-26 | 1 | -3/+4 |
| | |||||
* | 328649 | aclement | 2010-10-25 | 1 | -0/+7 |
| |