aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/src/main
Commit message (Collapse)AuthorAgeFilesLines
...
* Unnecessary unboxingLars Grefer2020-08-082-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 boxingLars Grefer2020-08-082-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 Grefer2020-08-081-1/+1
| | | | | | 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' loopLars Grefer2020-08-081-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' loopLars Grefer2020-08-0824-219/+199
| | | | | | 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>
* Added basic ThreadLocalAwareRepository - groundwork for 561819Andy Clement2020-04-221-0/+111
|
* Include JDTCore for Java14Andy Clement2020-04-202-33/+36
|
* polishAndy Clement2019-11-2911-12/+17
|
* Move to 1.9.6.BUILD-SNAPSHOT versionAndy Clement2019-11-282-1/+2
|
* Java 13 supportAndy Clement2019-11-252-23/+27
|
* Updated with Java12 supportAndy Clement2019-04-032-1/+7
|
* fix pom version and minor improvement to classpath calcAndy Clement2019-01-251-1/+1
|
* mavenizing bcel-builder - completeAndy Clement2019-01-24136-0/+28559