Author: markt
Date: Wed Jan 21 13:08:06 2015
New Revision: 1653531
URL: http://svn.apache.org/r1653531
Log:
Java8 Javadoc fixes
Modified:
tomcat/trunk/java/org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap.java
tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedQueue.java
tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedStack.java
Modified:
tomcat/trunk/java/org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap.java?rev=1653531&r1=1653530&r2=1653531&view=diff
==============================================================================
---
tomcat/trunk/java/org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap.java
(original)
+++
tomcat/trunk/java/org/apache/tomcat/util/collections/ManagedConcurrentWeakHashMap.java
Wed Jan 21 13:08:06 2015
@@ -33,6 +33,9 @@ import java.util.concurrent.ConcurrentMa
* <code>WeakHashMap</code> this class does not handle dead keys during common
* access operations, but expects you to call its {@link #maintain()} method
* periodically. Both keys and values are expected to be not-<code>null</code>.
+ *
+ * @param <K> The type of keys used with the Map instance
+ * @param <V> The type of values used with the Map instance
*/
public class ManagedConcurrentWeakHashMap<K, V> extends AbstractMap<K, V>
implements
ConcurrentMap<K, V> {
Modified:
tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedQueue.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedQueue.java?rev=1653531&r1=1653530&r2=1653531&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedQueue.java
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedQueue.java
Wed Jan 21 13:08:06 2015
@@ -22,6 +22,8 @@ package org.apache.tomcat.util.collectio
* create an unbounded queue with no requirement to shrink the queue. The aim
is
* to provide the bare minimum of required functionality as quickly as possible
* with minimum garbage.
+ *
+ * @param <T> The type of object managed by this queue
*/
public class SynchronizedQueue<T> {
Modified:
tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedStack.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedStack.java?rev=1653531&r1=1653530&r2=1653531&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedStack.java
(original)
+++ tomcat/trunk/java/org/apache/tomcat/util/collections/SynchronizedStack.java
Wed Jan 21 13:08:06 2015
@@ -22,6 +22,8 @@ package org.apache.tomcat.util.collectio
* create a pool of re-usable objects with no requirement to shrink the pool.
* The aim is to provide the bare minimum of required functionality as quickly
* as possible with minimum garbage.
+ *
+ * @param <T> The type of object managed by this stack
*/
public class SynchronizedStack<T> {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]