aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/gcvote
Commit message (Collapse)AuthorAgeFilesLines
* refactoring of cache logging codeBananeweizen2013-03-301-2/+5
| | | | * simplify control flow * move sanity checks into GCVote and twitter methods
* Refactoring: rename cgCache into GeocacheSamuel Tardieu2013-02-031-5/+5
|
* Refactoring: simplify codeSamuel Tardieu2013-01-231-22/+8
|
* refactoring: use exception object in logggingBananeweizen2013-01-121-2/+2
|
* fix #2328: Have a wrapper around Matcher to avoid String related memoryBananeweizen2013-01-051-7/+7
| | | issues
* Refactoring: narrow scope of variablesSamuel Tardieu2012-12-181-2/+1
|
* Refactoring: remove redundant initializersSamuel Tardieu2012-04-281-1/+1
| | | | | The initial values were never used as the variables are set in any case before being used.
* Refactoring: make it clearer that the first value is returnedSamuel Tardieu2012-04-221-6/+4
|
* Refactoring: rename request into getRequestSamuel Tardieu2012-04-171-2/+2
| | | | Those methods only do GET requests.
* Merge branch 'common-network-code' into upstreamSamuel Tardieu2012-04-131-2/+2
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/CacheDetailActivity.java
| * Cleanup: do not add Content-Type to GET requestSamuel Tardieu2012-04-121-2/+2
| | | | | | | | | | Whatever code requests its presence is probably wrong, as Content-Type describes the type of the body, which is non-existent for a GET request.
* | refactoring: remove the logging tag from settingsBananeweizen2012-04-121-7/+7
|/
* Merge remote-tracking branch 'teschi/issue#1304'Bananeweizen2012-04-081-3/+2
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/maps/CGeoMap.java
| * renamed LeastRecentlyUsedCache to LeastRecentlyUsedMapteschi2012-04-031-2/+2
|/
* Proxy all logs through cgeo.geocaching.utils.LogSamuel Tardieu2012-03-311-1/+1
| | | | | | | | The behaviour is unchanged, but altering Settings.isDebug() to return false will prevent verbose, debug and info levels messages from being logged. Part of work on #1301.
* refactoring: first part of removing cgBaseBananeweizen2012-03-101-3/+3
| | | | | | | * extract network stuff (non GC related) * extract GC login stuff * move UI related pieces to activities * to do: move parsing and searching to better places, remove cgBase completely afterwards
* refactoring: cleanupsBananeweizen2012-03-041-6/+10
| | | | * remove unused resources * fix some comments, layout, logging and other stuff
* performance refactoringsBananeweizen2012-03-041-0/+34
| | | | | | * avoid creating message objects, there is a pool * only get GCVotes for filtered caches, not for all * don't use GepointParser in LocParser, we know those are pure floats * String concatenation
* refactoring: moved some classes to packages, renamingBananeweizen2012-01-221-1/+1
|
* refactoring: move and rename LeastRecentlyUsedCache to avoid confusionBananeweizen2012-01-141-2/+2
|
* new base class cacheblafoo2012-01-141-11/+3
|
* change implementation of #939: hard limit for cached ratingsBananeweizen2012-01-121-2/+12
|
* Cache for ratings. Avoids double requests. Fixes #939blafoo2012-01-081-0/+30
|
* fix: avoid NPE in GC votingBananeweizen2011-12-062-4/+4
|
* Prevent null check warningsSamuel Tardieu2011-11-161-2/+1
| | | | | | | | | The use of CollectionsUtils.isNotEmpty() is not detected as meaning that the checked value is not null. Those calls have been inlined. Also, at some other places, we know that a value cannot be null but the compiler has no means to check it by itself because this information is not conveyed in the method signatures.
* refactor GCVote ratings, move into own packageBananeweizen2011-11-152-0/+220