Author: sebb
Date: Sun Apr 28 14:18:27 2013
New Revision: 1476780
URL: http://svn.apache.org/r1476780
Log:
Fix Javadoc syntax
Javadoc does not seem to allow generic types, so use html entities to simulate
the result
Neat hack from
http://stackoverflow.com/questions/9482309/javadoc-bug-link-cant-handle-generics#comment-22244407
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/EnumerationUtils.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/EnumerationUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/EnumerationUtils.java?rev=1476780&r1=1476779&r2=1476780&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/EnumerationUtils.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/EnumerationUtils.java
Sun Apr 28 14:18:27 2013
@@ -55,7 +55,7 @@ public class EnumerationUtils {
* Override toList(Enumeration) for StringTokenizer as it implements
Enumeration<Object>
* for the sake of backward compatibility.
*
- * @param stringTokenizer the tokenizer to convert to a {@link
#List(String)}
+ * @param stringTokenizer the tokenizer to convert to a {@link
List}<{@link String}>
* @return a list containing all tokens of the given StringTokenizer
*/
public static List<String> toList(final StringTokenizer stringTokenizer) {