Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Manual array to collection copy | Lars Grefer | 2020-08-15 | 1 | -9/+2 |
| | | | | | | Reports the copying of array contents to a collection where each element is added individually using a for loop. Such constructs may be replaced by a call to Collection.addAll(Arrays.asList()) or Collections.addAll(). Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Use the diamond operator where possible | Lars Grefer | 2020-08-13 | 25 | -73/+73 |
| | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Unnecessary unboxing | Lars Grefer | 2020-08-08 | 2 | -6/+6 |
| | | | | | | Reports "unboxing", e.g. explicit unwrapping of wrapped primitive values. Unboxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | Unnecessary boxing | Lars Grefer | 2020-08-08 | 2 | -3/+3 |
| | | | | | | Reports explicit boxing, i.e. wrapping of primitive values in objects. Explicit manual boxing is unnecessary under Java 5 and newer, and can be safely removed. Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 5 | -9/+9 |
| | | | | | | 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/+1 |
| | | | | | | 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 | 35 | -322/+286 |
| | | | | | | 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 |
| | |||||
* | Added basic ThreadLocalAwareRepository - groundwork for 561819 | Andy Clement | 2020-04-22 | 1 | -0/+111 |
| | |||||
* | Include JDTCore for Java14 | Andy Clement | 2020-04-20 | 3 | -33/+38 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 19 | -25/+30 |
| | |||||
* | Move to 1.9.6.BUILD-SNAPSHOT version | Andy Clement | 2019-11-28 | 3 | -2/+3 |
| | |||||
* | 1.9.5 release versions in pomsV1_9_5 | Andy Clement | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | Java 13 support | Andy Clement | 2019-11-25 | 2 | -23/+27 |
| | |||||
* | 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 |
| | |||||
* | Updated with Java12 support | Andy Clement | 2019-04-03 | 2 | -1/+7 |
| | |||||
* | fix pom version and minor improvement to classpath calc | Andy Clement | 2019-01-25 | 8 | -2/+86 |
| | |||||
* | mavenizing bcel-builder - complete | Andy Clement | 2019-01-24 | 173 | -142/+19 |
| | |||||
* | Change the mehtod name "containsField" to "findsField". | Kui Liu | 2018-10-11 | 1 | -1/+1 |
| | | | | | | | The method implements finding a field object in the 'fieldsList' with a given name. If found, return the found field object, otherwise return null. Thus, rename the method as "findsField" should be more clear than "containsField" since "containsField" is prone to ask whether the "fieldsFile" contains a field or not and return true or false. Signed-off-by: Kui Liu <brucekuiliu@gmail.com> | ||||
* | More fixes for 1.9.2V1_9_2_RC2 | Andy Clement | 2018-10-01 | 7 | -57/+443 |
| | | | | | | - update to more recent JDT to pickup Nestmates fix - bcel updated for NestMembers/NestHost attributes - testcases for nestmates | ||||
* | 1.9.2.RC1 changesV1_9_2_RC1 | Andy Clement | 2018-09-29 | 7 | -4/+136 |
| | |||||
* | Support Java10 | Andy Clement | 2018-04-18 | 2 | -9/+44 |
| | |||||
* | Bug#531694: generate more optional thisJoinPoint construction code | Andy Clement | 2018-03-09 | 2 | -3/+5 |
| | | | | | | | This commit introduces some new methods into the runtime Factory class and modifies code generation to use them (and to use the form of the LDC bytecode that loads class constants). | ||||
* | Fix for Bug 531819 - Negative parameter annotation matching not behaving | Andy Clement | 2018-02-28 | 1 | -0/+1 |
| | |||||
* | Add missing cases to bcel constantToString | Andy Clement | 2018-02-07 | 7 | -0/+91 |
| | |||||
* | Moved to package | Andy Clement | 2017-10-20 | 1 | -2/+2 |
| | |||||
* | rebuilt internal dependencies | Andy Clement | 2017-10-20 | 1 | -0/+0 |
| | |||||
* | Fixes Bug 525293 - Spring AOP could be faster | Andy Clement | 2017-09-28 | 1 | -5/+3 |
| | | | | | | | Multiple changes here: - annotation unpacking is smarter and if it only needs runtime retention annotations it uses reflection and doesn't unpack the bytes to discover class level retention annotations. - Reflection worlds are shared if for the same classloader. | ||||
* | Update project source/target levels to 1.7 | Andy Clement | 2017-09-27 | 1 | -4/+4 |
| | |||||
* | Ensure interfacemethodref can be built for invokestatic calls on interface ↵ | Andy Clement | 2017-09-26 | 1 | -2/+7 |
| | | | | methods | ||||
* | Various changes to get tests passing on 1.8 and 1.9 | Andy Clement | 2017-09-24 | 1 | -50/+5 |
| | |||||
* | various changes to make more tests pass on Java9 | Andy Clement | 2017-09-22 | 2 | -45/+100 |
| | |||||
* | Bring Java9 branch in line with 1.8.11 progress | Andy Clement | 2017-09-21 | 3 | -9/+22 |
|\ | |||||
| * | Fix 500035: handling target only binding in @AJ pointcut | Andy Clement | 2016-11-18 | 3 | -5/+5 |
| | | |||||
| * | Fix 500796: Allow for kotlin creating 'synthetic' local variable table entries | Andy Clement | 2016-11-07 | 1 | -4/+17 |
| | | |||||
* | | add constants to list | Andy Clement | 2017-09-21 | 1 | -2/+4 |
| | | |||||
* | | Merged post 1.8.5 changes into Java9 branch | Andy Clement | 2017-09-20 | 14 | -29/+46 |
|\| | |||||
| * | Fix 487927: ClassFormatException if LocalVariableTable data cannot be fully read | Andy Clement | 2016-02-18 | 7 | -7/+7 |
| | | |||||
| * | Fix 487694: Race condition in annotation unpacking can surface through ↵ | Andy Clement | 2016-02-11 | 4 | -8/+21 |
| | | | | | | | | Spring AOP | ||||
| * | Fix 485055: declare @field failing for final String fields (see also Bug 327141) | Andy Clement | 2016-01-05 | 2 | -1/+3 |
| | | |||||
| * | Add option not to generate local variable tables in some scenarios | Andy Clement | 2015-08-10 | 3 | -0/+0 |
| | | | | | | | | | | | | | | | | | | New Xset option generateNewLocalVariableTables defaults to true but can be set to false. In some situations incoming bytecode for weaving doesn't want them adding (e.g. android situations where the bytecode is a bit funky). Issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=470658 | ||||
| * | allow reflection world to resolve generated types (e.g. lambdas) | Andy Clement | 2015-06-08 | 5 | -12/+12 |
| | | | | | | | | | | | | | | 1.8.6 release prep 1.8.6 pom updates Fix rogue chars in javadoc rebuilt with javadoc fixes | ||||
| * | Bug 467415 - Weaver created bridge methods missing ACC_SYNTHETIC | Andy Clement | 2015-05-15 | 1 | -0/+1 |
| | | |||||
| * | 464749: Fix, remove Play class | Andy Clement | 2015-04-20 | 1 | -79/+0 |
| | | |||||
* | | Upgrading bcel to latest J9 attributes | Andy Clement | 2017-09-20 | 34 | -102/+924 |
| | | |||||
* | | Upgrading to latest 1.9 compiler | Andy Clement | 2016-06-17 | 4 | -372/+390 |
| | | |||||
* | | [j9] Basic read/write of Module attribute | Andy Clement | 2016-06-06 | 37 | -4/+652 |
| | |