From 69d8906c1678c8494e5247d694220a9d9433cf6b Mon Sep 17 00:00:00 2001 From: "Chris M. Hostetter" Date: Wed, 24 Aug 2011 18:47:54 +0000 Subject: [PATCH] javadoc fix: final class can't be subclassed, and even if it could the subclass can't call a method that doesn't exist git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1161228 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/java/org/apache/lucene/store/CompoundFileDirectory.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/lucene/src/java/org/apache/lucene/store/CompoundFileDirectory.java b/lucene/src/java/org/apache/lucene/store/CompoundFileDirectory.java index 09acf9106ab..d2095231d7e 100644 --- a/lucene/src/java/org/apache/lucene/store/CompoundFileDirectory.java +++ b/lucene/src/java/org/apache/lucene/store/CompoundFileDirectory.java @@ -53,8 +53,6 @@ public final class CompoundFileDirectory extends Directory { /** * Create a new CompoundFileDirectory. - *

- * NOTE: subclasses must call {@link #initForRead(Map)} before the directory can be used. */ public CompoundFileDirectory(Directory directory, String fileName, IOContext context, boolean openForWrite) throws IOException { this.directory = directory;