Fix use of forbidden api in Javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1701932 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2015-09-09 07:47:33 +00:00
parent 921c285350
commit cf845b1335
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ package org.apache.lucene.store;
* limitations under the License.
*/
import java.io.FileOutputStream;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.nio.file.DirectoryStream;
@ -256,7 +255,7 @@ public abstract class FSDirectory extends BaseDirectory {
final class FSIndexOutput extends OutputStreamIndexOutput {
/**
* The maximum chunk size is 8192 bytes, because {@link FileOutputStream} mallocs
* The maximum chunk size is 8192 bytes, because file channel mallocs
* a native buffer outside of stack if the write buffer size is larger.
*/
static final int CHUNK_SIZE = 8192;