| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
The cleanups, most of which were found by CodePro Tools, are of the
following categories:
- remove unnecessary type casts (and, subsequently, unnecessary import
statements)
- transform "if (test) return true; else return false" statements into
simpler "return test"
- mark abstract class as such
- remove unnecessary overrides (method only calling its super method)
|
|
|
|
|
|
|
|
|
|
| |
* Settings can no longer be instantiated, everything is static instead.
* Most option values are no longer cached in fields. This has been done
for clarity during the refactoring. I will add some performance tests
afterwards and may re-introduce those fields for caching the option
values.
Sorry, if anyone gets merge issues afterwards. There was no easier way
to implement this...
|
|
This prepares the inclusion of tests into the same repository.
|