aboutsummaryrefslogtreecommitdiffstats
path: root/bcel-builder/src/test/java/org
Commit message (Collapse)AuthorAgeFilesLines
* Couple of basic tests for the repository optimizationsAndy Clement2022-01-131-0/+84
|
* Replace more usages of StringBuffer with StringBuilderAndrey Turbanov2021-12-051-3/+3
|
* Merge pull request #102 from turbanoff/trim_trailing_whitespacesAndy Clement2021-11-303-30/+30
|\ | | | | Trim trailing whitespaces.
| * Trim trailing whitespaces.Andrey Turbanov2021-11-203-30/+30
| | | | | | | | | | Trailing whitespaces are useless. Most of code-styles forbids them. Most of editors always trim them on save. I propose to clean up project from trailing whitespaces in all java files at once.
* | Replace uses of StringBuffer with StringBuilder.Andrey Turbanov2021-11-202-5/+5
|/ | | | StringBuffer is a legacy synchronized class. StringBuilder is a direct replacement to StringBuffer which generally have better performance.
* Merge pull request #77 from SmallGiantGames/bug415838-testAndy Clement2021-06-301-0/+95
|\ | | | | Test for 1.9.6 concurrency bug in LocalVariableTable.unpack()
| * minor improvementsDmitry Mikhaylov2021-06-291-18/+19
| |
| * test for failing synchronization in LocalVariableTable.unpackDmitry Mikhaylov2021-06-281-0/+94
| |
* | Upgrade license from CPLv1/EPLv1 to EPLv2Alexander Kriegisch2021-06-0424-535/+535
|/ | | | | | | This was required by the Eclipse team as one precondition for the next release. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Fix some deprecated Java and JUnit warnings by using newer API callsAlexander Kriegisch2021-03-211-1/+1
| | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
* Merge branch 'master' into feature/collection-performanceAndy Clement2020-08-156-6/+0
|\
| * Cleanup unused importsLars Grefer2020-08-166-6/+0
| | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* | Weaken Collection declarationsLars Grefer2020-08-152-3/+4
|/ | | | | | 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>
* Use the diamond operator where possibleLars Grefer2020-08-137-17/+17
| | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de>
* 'String.indexOf()' expression is replaceable with 'contains()'Lars Grefer2020-08-084-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>
* 'for' loop replaceable with enhanced 'for' loopLars Grefer2020-08-0811-103/+87
| | | | | | 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>
* polishAndy Clement2019-11-298-13/+13
|
* mavenizing bcel-builder - completeAndy Clement2019-01-2429-0/+4998