mirror of https://github.com/apache/lucene.git
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:
parent
e9bb487252
commit
ef64958caa
|
@ -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<String> 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();
|
||||
|
|
Loading…
Reference in New Issue