aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgSearchThread.java
Commit message (Collapse)AuthorAgeFilesLines
* Various mechanical code cleanupsSamuel Tardieu2011-10-081-1/+1
| | | | | | | | | | | | 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)
* fix #120: make settings static (no singleton)Bananeweizen2011-10-031-1/+1
| | | | | | | | | | * 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...
* Move sources into the main directorySamuel Tardieu2011-09-161-0/+46
This prepares the inclusion of tests into the same repository.