workaround javadocs bug in newer 1.6 versions which generates invalid html if you link to a method that takes generics

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1343391 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-05-28 21:10:08 +00:00
parent e9bb487252
commit ef64958caa
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ public abstract class DataInput implements Cloneable {
}
/** Reads a Map<String,String> previously written
* with {@link DataOutput#writeStringStringMap}. */
* with {@link DataOutput#writeStringStringMap(Map)}. */
public Map<String,String> readStringStringMap() throws IOException {
final Map<String,String> map = new HashMap<String,String>();
final int count = readInt();
@ -218,7 +218,7 @@ public abstract class DataInput implements Cloneable {
}
/** Reads a Set&lt;String&gt; previously written
* with {@link DataOutput#writeStringSet}. */
* with {@link DataOutput#writeStringSet(Set)}. */
public Set<String> readStringSet() throws IOException {
final Set<String> set = new HashSet<String>();
final int count = readInt();