fix link in doc

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150519 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2004-09-17 19:15:28 +00:00
parent 4e3ce75258
commit 4c5f926cbd
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public abstract class Directory {
public abstract OutputStream createFile(String name)
throws IOException;
/** @deprecated use {@link openInput(String)}. */
/** @deprecated use {@link #openInput(String)} */
public InputStream openFile(String name) throws IOException {
return (InputStream)openInput(name);
}