mirror of https://github.com/apache/lucene.git
Fix javadocs.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1391177 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f37e5e2de6
commit
9639baaa32
|
@ -47,9 +47,13 @@ package org.apache.lucene.codecs;
|
|||
*/
|
||||
public abstract class FilterCodec extends Codec {
|
||||
|
||||
/** The codec to filter. */
|
||||
protected final Codec delegate;
|
||||
|
||||
/** Sole constructor. */
|
||||
/** Sole constructor. When subclassing this codec,
|
||||
* create a no-arg ctor and pass the delegate codec
|
||||
* and a unique name to this ctor.
|
||||
*/
|
||||
protected FilterCodec(String name, Codec delegate) {
|
||||
super(name);
|
||||
this.delegate = delegate;
|
||||
|
|
Loading…
Reference in New Issue