diff options
author | SammysHP <sven@sammyshp.de> | 2012-05-23 22:29:54 +0200 |
---|---|---|
committer | SammysHP <sven@sammyshp.de> | 2012-05-23 22:31:15 +0200 |
commit | 4f7a06483c5a3ef3b68b8e458005b82f3d8aa68a (patch) | |
tree | 8699539c30774ad1ddf747c4ea0e9c69e14d0afd /main/src/cgeo | |
parent | 3846195365bfd19471abf742464aac5a5b59fd98 (diff) | |
download | cgeo-4f7a06483c5a3ef3b68b8e458005b82f3d8aa68a.zip cgeo-4f7a06483c5a3ef3b68b8e458005b82f3d8aa68a.tar.gz cgeo-4f7a06483c5a3ef3b68b8e458005b82f3d8aa68a.tar.bz2 |
Remove JavaDoc @author tag.
Files are edited by many people, also all editors are visible in the log.
Diffstat (limited to 'main/src/cgeo')
43 files changed, 1 insertions, 123 deletions
diff --git a/main/src/cgeo/geocaching/CacheCache.java b/main/src/cgeo/geocaching/CacheCache.java index bea8274..cedb166 100644 --- a/main/src/cgeo/geocaching/CacheCache.java +++ b/main/src/cgeo/geocaching/CacheCache.java @@ -16,8 +16,6 @@ import java.util.Set; /** * Cache for Caches. Every cache is stored in memory while c:geo is active to * speed up the app and to minimize network request - which are slow. - * - * @author blafoo */ public class CacheCache { diff --git a/main/src/cgeo/geocaching/IBasicCache.java b/main/src/cgeo/geocaching/IBasicCache.java index 195572b..7e9ef11 100644 --- a/main/src/cgeo/geocaching/IBasicCache.java +++ b/main/src/cgeo/geocaching/IBasicCache.java @@ -6,11 +6,6 @@ package cgeo.geocaching; import cgeo.geocaching.enumerations.CacheSize; import cgeo.geocaching.enumerations.CacheType; - -/** - * @author blafoo - * - */ public interface IBasicCache extends ILogable, ICoordinates { public abstract String getGuid(); diff --git a/main/src/cgeo/geocaching/ICache.java b/main/src/cgeo/geocaching/ICache.java index 8c64cd2..a4f5eda 100644 --- a/main/src/cgeo/geocaching/ICache.java +++ b/main/src/cgeo/geocaching/ICache.java @@ -11,9 +11,6 @@ import java.util.Map; /** * Basic interface for caches - * - * @author blafoo - * */ public interface ICache extends IBasicCache { diff --git a/main/src/cgeo/geocaching/ILogable.java b/main/src/cgeo/geocaching/ILogable.java index 6c793fc..2e65c6a 100644 --- a/main/src/cgeo/geocaching/ILogable.java +++ b/main/src/cgeo/geocaching/ILogable.java @@ -3,11 +3,6 @@ */ package cgeo.geocaching; - -/** - * @author blafoo - * - */ public interface ILogable { /** diff --git a/main/src/cgeo/geocaching/IWaypoint.java b/main/src/cgeo/geocaching/IWaypoint.java index ad12d48..78e3b43 100644 --- a/main/src/cgeo/geocaching/IWaypoint.java +++ b/main/src/cgeo/geocaching/IWaypoint.java @@ -5,10 +5,6 @@ package cgeo.geocaching; import cgeo.geocaching.enumerations.WaypointType; -/** - * @author blafoo - * - */ public interface IWaypoint extends ILogable, ICoordinates { public abstract int getId(); diff --git a/main/src/cgeo/geocaching/apps/AbstractLocusApp.java b/main/src/cgeo/geocaching/apps/AbstractLocusApp.java index dca1f62..8f5160a 100644 --- a/main/src/cgeo/geocaching/apps/AbstractLocusApp.java +++ b/main/src/cgeo/geocaching/apps/AbstractLocusApp.java @@ -53,7 +53,6 @@ public abstract class AbstractLocusApp extends AbstractApp { * @param withCacheWaypoints * wether to give waypoints of caches to Locus or not * @param activity - * @author koem */ protected static boolean showInLocus(final List<?> objectsToShow, final boolean withCacheWaypoints, final boolean export, final Activity activity) { @@ -103,7 +102,6 @@ public abstract class AbstractLocusApp extends AbstractApp { * whether to give cache details (description, hint) to Locus or not * should be false for all if more then 200 Caches are transferred * @return null, when the <code>Point</code> could not be constructed - * @author koem */ private static Point getCachePoint(cgCache cache, boolean withWaypoints, boolean withCacheDetails) { if (cache == null || cache.getCoords() == null) { @@ -182,7 +180,6 @@ public abstract class AbstractLocusApp extends AbstractApp { * * @param waypoint * @return null, when the <code>Point</code> could not be constructed - * @author koem */ private static Point getWaypointPoint(cgWaypoint waypoint) { if (waypoint == null || waypoint.getCoords() == null) { diff --git a/main/src/cgeo/geocaching/apps/cache/navi/AbstractPointNavigationApp.java b/main/src/cgeo/geocaching/apps/cache/navi/AbstractPointNavigationApp.java index 893b9d6..5817763 100644 --- a/main/src/cgeo/geocaching/apps/cache/navi/AbstractPointNavigationApp.java +++ b/main/src/cgeo/geocaching/apps/cache/navi/AbstractPointNavigationApp.java @@ -8,9 +8,6 @@ import android.app.Activity; /** * navigation app for simple point navigation (no differentiation between cache/waypoint/point) - * - * @author bananeweizen - * */ abstract class AbstractPointNavigationApp extends AbstractNavigationApp { diff --git a/main/src/cgeo/geocaching/apps/cache/navi/LocusApp.java b/main/src/cgeo/geocaching/apps/cache/navi/LocusApp.java index 270135e..d71a474 100644 --- a/main/src/cgeo/geocaching/apps/cache/navi/LocusApp.java +++ b/main/src/cgeo/geocaching/apps/cache/navi/LocusApp.java @@ -16,7 +16,6 @@ class LocusApp extends AbstractLocusApp implements NavigationApp { * This method constructs a list of cache and waypoints only. * * @see AbstractLocusApp#showInLocus - * @author koem */ @Override public boolean invoke(Activity activity, cgCache cache, cgWaypoint waypoint, final Geopoint coords) { diff --git a/main/src/cgeo/geocaching/apps/cachelist/LocusCacheListApp.java b/main/src/cgeo/geocaching/apps/cachelist/LocusCacheListApp.java index c3427fb..65760c7 100644 --- a/main/src/cgeo/geocaching/apps/cachelist/LocusCacheListApp.java +++ b/main/src/cgeo/geocaching/apps/cachelist/LocusCacheListApp.java @@ -25,7 +25,6 @@ class LocusCacheListApp extends AbstractLocusApp implements CacheListApp { * show caches in Locus * * @see AbstractLocusApp#showInLocus - * @author koem */ @Override public boolean invoke(List<cgCache> cacheList, Activity activity, final SearchResult search) { diff --git a/main/src/cgeo/geocaching/compatibility/AndroidLevel11.java b/main/src/cgeo/geocaching/compatibility/AndroidLevel11.java index 8bc5156..f933071 100644 --- a/main/src/cgeo/geocaching/compatibility/AndroidLevel11.java +++ b/main/src/cgeo/geocaching/compatibility/AndroidLevel11.java @@ -4,9 +4,6 @@ import android.app.Activity; /** * Android level 11 support - * - * @author bananeweizen - * */ public class AndroidLevel11 implements AndroidLevel11Interface { diff --git a/main/src/cgeo/geocaching/compatibility/AndroidLevel11Dummy.java b/main/src/cgeo/geocaching/compatibility/AndroidLevel11Dummy.java index 9dd9223..9c2bb8c 100644 --- a/main/src/cgeo/geocaching/compatibility/AndroidLevel11Dummy.java +++ b/main/src/cgeo/geocaching/compatibility/AndroidLevel11Dummy.java @@ -4,9 +4,6 @@ import android.app.Activity; /** * dummy class which has no functionality in the level 11 API - * - * @author bananeweizen - * */ public class AndroidLevel11Dummy implements AndroidLevel11Interface { diff --git a/main/src/cgeo/geocaching/connector/gc/GCConstants.java b/main/src/cgeo/geocaching/connector/gc/GCConstants.java index 96991f8..992a3e6 100644 --- a/main/src/cgeo/geocaching/connector/gc/GCConstants.java +++ b/main/src/cgeo/geocaching/connector/gc/GCConstants.java @@ -8,8 +8,6 @@ import java.util.regex.Pattern; * * For further information about patterns have a look at * http://download.oracle.com/javase/1.4.2/docs/api/java/util/regex/Pattern.html - * - * @author blafoo */ public final class GCConstants { diff --git a/main/src/cgeo/geocaching/connector/gc/Tile.java b/main/src/cgeo/geocaching/connector/gc/Tile.java index 62b77db..5404446 100644 --- a/main/src/cgeo/geocaching/connector/gc/Tile.java +++ b/main/src/cgeo/geocaching/connector/gc/Tile.java @@ -22,8 +22,6 @@ import java.util.Set; /** * All about tiles. * - * @author blafoo - * * @see <a href="http://msdn.microsoft.com/en-us/library/bb259689.aspx">MSDN</a> * @see <a * href="http://svn.openstreetmap.org/applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/OsmMercator.java">OSM</a> diff --git a/main/src/cgeo/geocaching/connector/gc/UTFGrid.java b/main/src/cgeo/geocaching/connector/gc/UTFGrid.java index ce80ffd..a4eeff5 100644 --- a/main/src/cgeo/geocaching/connector/gc/UTFGrid.java +++ b/main/src/cgeo/geocaching/connector/gc/UTFGrid.java @@ -4,8 +4,6 @@ import java.util.List; /** * - * @author blafoo - * * @see <a href="https://github.com/mapbox/mbtiles-spec/blob/master/1.1/utfgrid.md">Mapbox</a> * */ diff --git a/main/src/cgeo/geocaching/connector/gc/UTFGridPosition.java b/main/src/cgeo/geocaching/connector/gc/UTFGridPosition.java index 1aae560..e34d277 100644 --- a/main/src/cgeo/geocaching/connector/gc/UTFGridPosition.java +++ b/main/src/cgeo/geocaching/connector/gc/UTFGridPosition.java @@ -6,9 +6,6 @@ import java.util.regex.Pattern; /** * Representation of a position inside an UTFGrid - * - * @author blafoo - * */ public final class UTFGridPosition { diff --git a/main/src/cgeo/geocaching/enumerations/CacheSize.java b/main/src/cgeo/geocaching/enumerations/CacheSize.java index 0c0be3f..55d64bf 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheSize.java +++ b/main/src/cgeo/geocaching/enumerations/CacheSize.java @@ -9,8 +9,6 @@ import java.util.Map; /** * Enum listing cache sizes - * - * @author koem */ public enum CacheSize { MICRO("Micro", 1, R.string.cache_size_micro), diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java index 86ff2c6..be66de1 100644 --- a/main/src/cgeo/geocaching/enumerations/CacheType.java +++ b/main/src/cgeo/geocaching/enumerations/CacheType.java @@ -9,8 +9,6 @@ import java.util.Map; /** * Enum listing all cache types - * - * @author koem */ public enum CacheType { diff --git a/main/src/cgeo/geocaching/enumerations/LiveMapStrategy.java b/main/src/cgeo/geocaching/enumerations/LiveMapStrategy.java index 5cc7efc..e9dbc5d 100644 --- a/main/src/cgeo/geocaching/enumerations/LiveMapStrategy.java +++ b/main/src/cgeo/geocaching/enumerations/LiveMapStrategy.java @@ -7,9 +7,6 @@ import java.util.EnumSet; /** * Defines the strategy for the Live Map - * - * @author blafoo - * */ public interface LiveMapStrategy { diff --git a/main/src/cgeo/geocaching/enumerations/LoadFlags.java b/main/src/cgeo/geocaching/enumerations/LoadFlags.java index 22b0e2d..c56a7ba 100644 --- a/main/src/cgeo/geocaching/enumerations/LoadFlags.java +++ b/main/src/cgeo/geocaching/enumerations/LoadFlags.java @@ -4,8 +4,6 @@ import java.util.EnumSet; /** * Cache loading/saving/removing parameters - * - * @author blafoo */ public interface LoadFlags { diff --git a/main/src/cgeo/geocaching/enumerations/LogType.java b/main/src/cgeo/geocaching/enumerations/LogType.java index e5c9d40..1071a19 100644 --- a/main/src/cgeo/geocaching/enumerations/LogType.java +++ b/main/src/cgeo/geocaching/enumerations/LogType.java @@ -11,8 +11,6 @@ import java.util.Map; /** * Different log types - * - * @author blafoo */ public enum LogType { diff --git a/main/src/cgeo/geocaching/enumerations/WaypointType.java b/main/src/cgeo/geocaching/enumerations/WaypointType.java index 44004c0..52eb318 100644 --- a/main/src/cgeo/geocaching/enumerations/WaypointType.java +++ b/main/src/cgeo/geocaching/enumerations/WaypointType.java @@ -11,8 +11,6 @@ import java.util.Set; /** * Enum listing waypoint types - * - * @author koem */ public enum WaypointType { FINAL("flag", R.string.wp_final, R.drawable.waypoint_flag), diff --git a/main/src/cgeo/geocaching/maps/AbstractItemizedOverlay.java b/main/src/cgeo/geocaching/maps/AbstractItemizedOverlay.java index aa05d8c..464c2b2 100644 --- a/main/src/cgeo/geocaching/maps/AbstractItemizedOverlay.java +++ b/main/src/cgeo/geocaching/maps/AbstractItemizedOverlay.java @@ -1,9 +1,9 @@ package cgeo.geocaching.maps; +import cgeo.geocaching.maps.interfaces.GeneralOverlay; import cgeo.geocaching.maps.interfaces.ItemizedOverlayImpl; import cgeo.geocaching.maps.interfaces.MapProjectionImpl; import cgeo.geocaching.maps.interfaces.MapViewImpl; -import cgeo.geocaching.maps.interfaces.GeneralOverlay; import cgeo.geocaching.maps.interfaces.OverlayImpl; import cgeo.geocaching.maps.interfaces.OverlayItemImpl; @@ -14,9 +14,6 @@ import android.graphics.drawable.Drawable; /** * Base class for itemized overlays. Delegates calls from deriving classes to the contained * provider-specific implementation. - * - * @author rsudev - * */ public abstract class AbstractItemizedOverlay implements GeneralOverlay { diff --git a/main/src/cgeo/geocaching/maps/AbstractMap.java b/main/src/cgeo/geocaching/maps/AbstractMap.java index ae5b57b..c028e51 100644 --- a/main/src/cgeo/geocaching/maps/AbstractMap.java +++ b/main/src/cgeo/geocaching/maps/AbstractMap.java @@ -12,9 +12,6 @@ import android.view.View; /** * Base class for the map activity. Delegates base class calls to the * provider-specific implementation. - * - * @author rsudev - * */ public abstract class AbstractMap { diff --git a/main/src/cgeo/geocaching/maps/google/GoogleCacheOverlay.java b/main/src/cgeo/geocaching/maps/google/GoogleCacheOverlay.java index 67fe997..4868a30 100644 --- a/main/src/cgeo/geocaching/maps/google/GoogleCacheOverlay.java +++ b/main/src/cgeo/geocaching/maps/google/GoogleCacheOverlay.java @@ -18,9 +18,6 @@ import java.util.concurrent.locks.ReentrantLock; /** * Google specific implementation of the itemized cache overlay - * - * @author rsudev - * */ public class GoogleCacheOverlay extends ItemizedOverlay<GoogleCacheOverlayItem> implements ItemizedOverlayImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/CachesOverlayItemImpl.java b/main/src/cgeo/geocaching/maps/interfaces/CachesOverlayItemImpl.java index 1afc120..5bf3ed2 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/CachesOverlayItemImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/CachesOverlayItemImpl.java @@ -6,9 +6,6 @@ import cgeo.geocaching.enumerations.CacheType; /** * Covers the common functions of the provider-specific * CacheOverlayItem implementations - * - * @author rsudev - * */ public interface CachesOverlayItemImpl extends OverlayItemImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/GeneralOverlay.java b/main/src/cgeo/geocaching/maps/interfaces/GeneralOverlay.java index 35d0b2d..29106b1 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/GeneralOverlay.java +++ b/main/src/cgeo/geocaching/maps/interfaces/GeneralOverlay.java @@ -6,9 +6,6 @@ import android.graphics.Point; /** * Defines the base functions of the provider-independent * Overlay implementations - * - * @author rsudev - * */ public interface GeneralOverlay { diff --git a/main/src/cgeo/geocaching/maps/interfaces/GeoPointImpl.java b/main/src/cgeo/geocaching/maps/interfaces/GeoPointImpl.java index 5636da2..2fe2be0 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/GeoPointImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/GeoPointImpl.java @@ -5,9 +5,6 @@ import cgeo.geocaching.ICoordinates; /** * Defines the common functions of the provider-specific * GeoPoint implementations - * - * @author rsudev - * */ public interface GeoPointImpl extends ICoordinates { diff --git a/main/src/cgeo/geocaching/maps/interfaces/ItemizedOverlayImpl.java b/main/src/cgeo/geocaching/maps/interfaces/ItemizedOverlayImpl.java index 8f9dba2..90c5b31 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/ItemizedOverlayImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/ItemizedOverlayImpl.java @@ -9,9 +9,6 @@ import android.graphics.drawable.Drawable; /** * Defines the common functions to access the provider-specific * ItemizedOverlay implementation - * - * @author rsudev - * */ public interface ItemizedOverlayImpl extends OverlayImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/MapActivityImpl.java b/main/src/cgeo/geocaching/maps/interfaces/MapActivityImpl.java index ff7e338..dc7dca5 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/MapActivityImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/MapActivityImpl.java @@ -10,9 +10,6 @@ import android.view.View; /** * Defines the common functions of the provider-specific * MapActivity implementations. - * - * @author rsudev - * */ public interface MapActivityImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/MapControllerImpl.java b/main/src/cgeo/geocaching/maps/interfaces/MapControllerImpl.java index 86a5800..fe782f7 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/MapControllerImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/MapControllerImpl.java @@ -3,9 +3,6 @@ package cgeo.geocaching.maps.interfaces; /** * Defines the common functions of the provider-specific * MapController implementations - * - * @author rsudev - * */ public interface MapControllerImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/MapProjectionImpl.java b/main/src/cgeo/geocaching/maps/interfaces/MapProjectionImpl.java index c7b6856..0e8828c 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/MapProjectionImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/MapProjectionImpl.java @@ -5,9 +5,6 @@ import android.graphics.Point; /** * Defines common functions of the provider-specific * MapProjection implementations - * - * @author rsudev - * */ public interface MapProjectionImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/MapProvider.java b/main/src/cgeo/geocaching/maps/interfaces/MapProvider.java index ba80512..15330e2 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/MapProvider.java +++ b/main/src/cgeo/geocaching/maps/interfaces/MapProvider.java @@ -7,9 +7,6 @@ import java.util.Map; /** * Defines functions of a factory class to get implementation specific objects * (GeoPoints, OverlayItems, ...) - * - * @author rsudev - * */ public interface MapProvider { diff --git a/main/src/cgeo/geocaching/maps/interfaces/MapViewImpl.java b/main/src/cgeo/geocaching/maps/interfaces/MapViewImpl.java index c567cf2..1bafc57 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/MapViewImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/MapViewImpl.java @@ -13,9 +13,6 @@ import android.graphics.drawable.Drawable; /** * Defines common functions of the provider-specific * MapView implementations - * - * @author rsudev - * */ public interface MapViewImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/OnMapDragListener.java b/main/src/cgeo/geocaching/maps/interfaces/OnMapDragListener.java index 0e51b32..bf67014 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/OnMapDragListener.java +++ b/main/src/cgeo/geocaching/maps/interfaces/OnMapDragListener.java @@ -2,9 +2,6 @@ package cgeo.geocaching.maps.interfaces; /** * Notifies the parent class when a MapView has been dragged - * - * @author cachapa - * */ public interface OnMapDragListener { diff --git a/main/src/cgeo/geocaching/maps/interfaces/OtherCachersOverlayItemImpl.java b/main/src/cgeo/geocaching/maps/interfaces/OtherCachersOverlayItemImpl.java index cc611ed..453c8a9 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/OtherCachersOverlayItemImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/OtherCachersOverlayItemImpl.java @@ -5,9 +5,6 @@ import cgeo.geocaching.go4cache.Go4CacheUser; /** * Common functions of the provider-specific * UserOverlayItem implementations - * - * @author rsudev - * */ public interface OtherCachersOverlayItemImpl extends OverlayItemImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/OverlayImpl.java b/main/src/cgeo/geocaching/maps/interfaces/OverlayImpl.java index a80bfb0..115b692 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/OverlayImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/OverlayImpl.java @@ -3,9 +3,6 @@ package cgeo.geocaching.maps.interfaces; /** * Marker interface of the provider-specific * Overlay implementations - * - * @author rsudev - * */ public interface OverlayImpl { diff --git a/main/src/cgeo/geocaching/maps/interfaces/OverlayItemImpl.java b/main/src/cgeo/geocaching/maps/interfaces/OverlayItemImpl.java index 1673da2..a520b55 100644 --- a/main/src/cgeo/geocaching/maps/interfaces/OverlayItemImpl.java +++ b/main/src/cgeo/geocaching/maps/interfaces/OverlayItemImpl.java @@ -5,9 +5,6 @@ import android.graphics.drawable.Drawable; /** * Common functions of the provider-specific * OverlayItem implementations - * - * @author rsudev - * */ public interface OverlayItemImpl { diff --git a/main/src/cgeo/geocaching/sorting/DateComparator.java b/main/src/cgeo/geocaching/sorting/DateComparator.java index 92ada91..7129905 100644 --- a/main/src/cgeo/geocaching/sorting/DateComparator.java +++ b/main/src/cgeo/geocaching/sorting/DateComparator.java @@ -6,9 +6,6 @@ import java.util.Date; /** * compares caches by date - * - * @author bananeweizen - * */ public class DateComparator extends AbstractCacheComparator { diff --git a/main/src/cgeo/geocaching/sorting/EventDateComparator.java b/main/src/cgeo/geocaching/sorting/EventDateComparator.java index ac49e66..e4649c8 100644 --- a/main/src/cgeo/geocaching/sorting/EventDateComparator.java +++ b/main/src/cgeo/geocaching/sorting/EventDateComparator.java @@ -2,9 +2,6 @@ package cgeo.geocaching.sorting; /** * Compares caches by date. Used only for event caches. - * - * @author campbeb - * */ public class EventDateComparator extends DateComparator { diff --git a/main/src/cgeo/geocaching/sorting/InventoryComparator.java b/main/src/cgeo/geocaching/sorting/InventoryComparator.java index d4e9f5e..fb1360e 100644 --- a/main/src/cgeo/geocaching/sorting/InventoryComparator.java +++ b/main/src/cgeo/geocaching/sorting/InventoryComparator.java @@ -4,9 +4,6 @@ import cgeo.geocaching.cgCache; /** * sorts caches by number of items in inventory - * - * @author bananeweizen - * */ public class InventoryComparator extends AbstractCacheComparator { diff --git a/main/src/cgeo/geocaching/sorting/VoteComparator.java b/main/src/cgeo/geocaching/sorting/VoteComparator.java index 8d9f907..09d1620 100644 --- a/main/src/cgeo/geocaching/sorting/VoteComparator.java +++ b/main/src/cgeo/geocaching/sorting/VoteComparator.java @@ -4,9 +4,6 @@ import cgeo.geocaching.cgCache; /** * sorts caches by the users own voting (if available at all) - * - * @author bananeweizen - * */ public class VoteComparator extends AbstractCacheComparator { diff --git a/main/src/cgeo/geocaching/utils/LeastRecentlyUsedMap.java b/main/src/cgeo/geocaching/utils/LeastRecentlyUsedMap.java index 953fc47..f0bc4f5 100644 --- a/main/src/cgeo/geocaching/utils/LeastRecentlyUsedMap.java +++ b/main/src/cgeo/geocaching/utils/LeastRecentlyUsedMap.java @@ -13,9 +13,6 @@ import java.util.Map; * <li> BOUNDED means that objects are updated only when they are put, * so the objects that are dropped are the ones that haven't been written the longest</li> * </ul> - * - * @author blafoo - * @author Teschi */ public abstract class LeastRecentlyUsedMap<K, V> extends LinkedHashMap<K, V> { @@ -120,8 +117,6 @@ public abstract class LeastRecentlyUsedMap<K, V> extends LinkedHashMap<K, V> { * Interface for handlers that wish to get notified when items are * removed from the LRUMap * - * @author rsudev - * * @param <V> */ public interface RemoveHandler<V> { diff --git a/main/src/cgeo/geocaching/utils/LeastRecentlyUsedSet.java b/main/src/cgeo/geocaching/utils/LeastRecentlyUsedSet.java index 986087f..98aba03 100644 --- a/main/src/cgeo/geocaching/utils/LeastRecentlyUsedSet.java +++ b/main/src/cgeo/geocaching/utils/LeastRecentlyUsedSet.java @@ -16,8 +16,6 @@ import java.util.List; * Synchronization is added to guard against concurrent modification. Iterator * access has to be guarded externally or the synchronized getAsList method can be used * to get a clone for iteration - * - * @author Teschi */ public class LeastRecentlyUsedSet<E> extends AbstractSet<E> implements Cloneable, java.io.Serializable { |