Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace uses of StringBuffer with StringBuilder. | Andrey Turbanov | 2021-11-20 | 1 | -2/+2 |
| | | | | StringBuffer is a legacy synchronized class. StringBuilder is a direct replacement to StringBuffer which generally have better performance. | ||||
* | Upgrade license from CPLv1/EPLv1 to EPLv2 | Alexander Kriegisch | 2021-06-04 | 7 | -65/+65 |
| | | | | | | | This was required by the Eclipse team as one precondition for the next release. Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Fix 'ajdoc' tests for Java 15 build | Alexander Kriegisch | 2021-03-14 | 1 | -76/+78 |
| | | | | Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name> | ||||
* | Merge branch 'master' into feature/collection-performance | Andy Clement | 2020-08-15 | 2 | -2/+0 |
|\ | |||||
| * | Cleanup unused imports | Lars Grefer | 2020-08-16 | 2 | -2/+0 |
| | | | | | | | | Signed-off-by: Lars Grefer <eclipse@larsgrefer.de> | ||||
* | | Weaken Collection declarations | Lars Grefer | 2020-08-15 | 1 | -5/+5 |
| | | | | | | | | | | | | 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 | 1 | -2/+1 |
|/ | | | | | | 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> | ||||
* | Unnecessary unboxing | Lars Grefer | 2020-08-08 | 1 | -1/+1 |
| | | | | | | 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> | ||||
* | 'String.indexOf()' expression is replaceable with 'contains()' | Lars Grefer | 2020-08-08 | 1 | -2/+2 |
| | | | | | | 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 | 3 | -16/+16 |
| | | | | | | 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 | 2 | -1539/+1571 |
| | |||||
* | polish | Andy Clement | 2019-11-29 | 1 | -211/+222 |
| | |||||
* | Add module tests back in - but streamlined | Andy Clement | 2019-02-01 | 2 | -46/+4 |
| | |||||
* | mavenizing testing-drivers - done' | Andy Clement | 2019-01-30 | 2 | -0/+0 |
| | |||||
* | mavenizing testing-drivers - wip | Andy Clement | 2019-01-30 | 9 | -0/+1276 |
| | |||||
* | findbugs/eclipse warnings fixed | aclement | 2008-08-27 | 1 | -17/+63 |
| | |||||
* | update license to EPL | acolyer | 2006-06-01 | 1 | -2/+2 |
| | |||||
* | -exitOnFailure for System.exit(..) on failure, so release/build.xml can ↵ | wisberg | 2005-03-10 | 1 | -2/+20 |
| | | | | respond to test failures. | ||||
* | support vm args during forking (simple update: forking still requires system ↵ | wisberg | 2004-10-05 | 1 | -35/+53 |
| | | | | properties) | ||||
* | spring cleaning in advance of 1.2 enhancements: | acolyer | 2004-01-23 | 1 | -7/+7 |
| | | | | | removed unused imports, local variables, and private methods (still there, just commented out). | ||||
* | doc harness handling of 2-element options | wisberg | 2003-10-29 | 1 | -33/+37 |
| | |||||
* | deleting junk | wisberg | 2003-10-23 | 1 | -26/+0 |
| | |||||
* | balancing start/end suite calls | wisberg | 2003-08-17 | 1 | -8/+12 |
| | |||||
* | report fails as junit errors, not failures | acolyer | 2003-08-08 | 1 | -1/+1 |
| | |||||
* | Added support for creation of junit xml reports using -junit or -logJUnit flags | acolyer | 2003-08-08 | 1 | -13/+165 |
| | |||||
* | corrected property name for forking run classpath | wisberg | 2003-06-02 | 1 | -1/+1 |
| | |||||
* | documenting options | wisberg | 2003-05-25 | 1 | -49/+127 |
| | |||||
* | harness copyright wrong - was created in 2002 | wisberg | 2003-05-25 | 1 | -2/+3 |
| | |||||
* | updating harness documentation for new features | wisberg | 2003-05-25 | 1 | -7/+52 |
| | |||||
* | suite files now constrained to be readable to avoid confusion with ↵ | wisberg | 2003-05-25 | 1 | -1/+2 |
| | | | | -ajctestTitle.. referents. | ||||
* | documenting -ajdeCompiler and -ajctaskCompiler selectors | wisberg | 2003-05-24 | 1 | -1/+6 |
| | |||||
* | supporting a forked java run provisionally with system properties specifying ↵ | wisberg | 2003-05-07 | 1 | -4/+63 |
| | | | | | | | | fork, java home, java, and bootclasspath. This should enable running the harness when targeting a VM that the harness or compiler can't run on, but this does not detect failures correctly in some cases, nor does it validate any of the system properties. | ||||
* | -killTemp to delete temp directories when each test case completes | wisberg | 2003-05-07 | 2 | -3/+20 |
| | |||||
* | remove !eclipse from aliases because it is the default | wisberg | 2003-05-07 | 1 | -4/+2 |
| | | | | | and it overrides specification of the AJDE compiler (using -ajdeCompiler) | ||||
* | corrected knownLimitation keyword | wisberg | 2003-03-11 | 1 | -1/+1 |
| | |||||
* | updates for eclipse and sense | wisberg | 2003-03-05 | 1 | -5/+22 |
| | |||||
* | new -release option alias for harness | wisberg | 2003-03-05 | 1 | -5/+19 |
| | |||||
* | To run in eclipse without a launch configuration window | wisberg | 2003-01-06 | 1 | -6/+33 |
| | | | | | | | (which crashes my NT - http://bugs.eclipse.org/bugs/show_bug.cgi?id=29011 ), create a file "HarnessArgs.txt" in the run directory for any arguments. | ||||
* | initial versioninitial_CPL | wisberg | 2002-12-16 | 4 | -0/+1436 |