Index: trunk/src/org/openstreetmap/josm/data/cache/BufferedImageCacheEntry.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/BufferedImageCacheEntry.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/cache/BufferedImageCacheEntry.java	(revision 10723)
@@ -11,6 +11,6 @@
  * Cache Entry that has methods to get the BufferedImage, that will be cached along in memory
  * but will be not serialized when saved to the disk (to avoid duplication of data)
+ *
  * @author Wiktor Niesiobędzki
- *
  */
 public class BufferedImageCacheEntry extends CacheEntry {
Index: trunk/src/org/openstreetmap/josm/data/cache/CacheEntry.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/CacheEntry.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/cache/CacheEntry.java	(revision 10723)
@@ -6,8 +6,7 @@
 
 /**
- * @author Wiktor Niesiobędzki
- *
  * Class that will hold JCS cache entries
  *
+ * @author Wiktor Niesiobędzki
  */
 public class CacheEntry implements Serializable {
Index: trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java	(revision 10723)
@@ -14,19 +14,16 @@
 
 /**
- * @author Wiktor Niesiobędzki
- *
  * Queue for ThreadPoolExecutor that implements per-host limit. It will acquire a semaphore for each task
  * and it will set a runnable task with semaphore release, when job has finished.
- *
+ * <p>
  * This implementation doesn't guarantee to have at most hostLimit connections per host[1], and it doesn't
- * guarantee that all threads will be busy, when there is work for them[2].
- *
+ * guarantee that all threads will be busy, when there is work for them[2]. <br>
  * [1] More connection per host may happen, when ThreadPoolExecutor is growing its pool, and thus
- *     tasks do not go through the Queue
+ *     tasks do not go through the Queue <br>
  * [2] If we have a queue, and for all hosts in queue we will fail to acquire semaphore, the thread
  *     take the first available job and wait for semaphore. It might be the case, that semaphore was released
  *     for some task further in queue, but this implementation doesn't try to detect such situation
  *
- *
+ * @author Wiktor Niesiobędzki
  */
 public class HostLimitQueue extends LinkedBlockingDeque<Runnable> {
Index: trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/cache/JCSCacheManager.java	(revision 10723)
@@ -33,8 +33,8 @@
 
 /**
- * @author Wiktor Niesiobędzki
- *
  * Wrapper class for JCS Cache. Sets some sane environment and returns instances of cache objects.
  * Static configuration for now assumes some small LRU cache in memory and larger LRU cache on disk
+ *
+ * @author Wiktor Niesiobędzki
  * @since 8168
  */
Index: trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 10723)
@@ -30,9 +30,4 @@
 
 /**
- * @author Wiktor Niesiobędzki
- *
- * @param <K> cache entry key type
- * @param <V> cache value type
- *
  * Generic loader for HTTP based tiles. Uses custom attribute, to check, if entry has expired
  * according to HTTP headers sent with tile. If so, it tries to verify using Etags
@@ -45,4 +40,7 @@
  * listeners will be gathered and notified, once download job will be finished
  *
+ * @param <K> cache entry key type
+ * @param <V> cache value type
+ * @author Wiktor Niesiobędzki
  * @since 8168
  */
Index: trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java	(revision 10723)
@@ -20,8 +20,7 @@
 
 /**
- * @author Wiktor Niesiobędzki
- *
  * Wrapper class that bridges between JCS cache and Tile Loaders
  *
+ * @author Wiktor Niesiobędzki
  */
 public class TMSCachedTileLoader implements TileLoader, CachedTileLoader {
Index: trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java	(revision 10722)
+++ trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java	(revision 10723)
@@ -35,7 +35,7 @@
 
 /**
+ * Class bridging TMS requests to JCS cache requests
+ *
  * @author Wiktor Niesiobędzki
- *
- * Class bridging TMS requests to JCS cache requests
  * @since 8168
  */
