Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Couple of basic tests for the repository optimizations | Andy Clement | 2022-01-13 | 1 | -0/+84 |
| | |||||
* | Replace more usages of StringBuffer with StringBuilder | Andrey Turbanov | 2021-12-05 | 1 | -3/+3 |
| | |||||
* | Merge pull request #102 from turbanoff/trim_trailing_whitespaces | Andy Clement | 2021-11-30 | 3 | -30/+30 |
|\ | | | | | Trim trailing whitespaces. | ||||
| * | Trim trailing whitespaces. | Andrey Turbanov | 2021-11-20 | 3 | -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 Turbanov | 2021-11-20 | 2 | -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-test | Andy Clement | 2021-06-30 | 1 | -0/+95 |
|\ | | | | | Test for 1.9.6 concurrency bug in LocalVariableTable.unpack() | ||||
| * | minor improvements | Dmitry Mikhaylov | 2021-06-29 | 1 | -18/+19 |
| | | |||||
| * | test for failing synchronization in LocalVariableTable.unpack | Dmitry Mikhaylov | 2021-06-28 | 1 | -0/+94 |
| | | |||||
* | | Upgrade license from CPLv1/EPLv1 to EPLv2 | Alexander Kriegisch | 2021-06-04 | 24 | -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 calls | Alexander Kriegisch | 2021-03-21 | 1 | -1/+1 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Merge branch 'master' into feature/collection-performance | Andy Clement | 2020-08-15 | 6 | -6/+0 |
|\ | |||||
| * | Cleanup unused imports | Lars Grefer | 2020-08-16 | 6 | -6/+0 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Weaken Collection declarations | Lars Grefer | 2020-08-15 | 2 | -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 possible | Lars Grefer | 2020-08-13 | 7 | -17/+17 |
| | | | | 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> | ||||
* | 'for' loop replaceable with enhanced 'for' loop | Lars Grefer | 2020-08-08 | 11 | -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> | ||||
* | polish | Andy Clement | 2019-11-29 | 8 | -13/+13 |
| | |||||
* | mavenizing bcel-builder - complete | Andy Clement | 2019-01-24 | 29 | -0/+4998 |