mirror of https://github.com/apache/lucene.git
remove useless inheritdocs (if you dont add to it, it does nothing)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1377893 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5ba7843db9
commit
2afa06672f
|
@ -326,16 +326,12 @@ public abstract class Analyzer {
|
|||
*/
|
||||
public final static class GlobalReuseStrategy extends ReuseStrategy {
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public TokenStreamComponents getReusableComponents(String fieldName) {
|
||||
return (TokenStreamComponents) getStoredValue();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void setReusableComponents(String fieldName, TokenStreamComponents components) {
|
||||
setStoredValue(components);
|
||||
}
|
||||
|
@ -347,19 +343,15 @@ public abstract class Analyzer {
|
|||
*/
|
||||
public static class PerFieldReuseStrategy extends ReuseStrategy {
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public TokenStreamComponents getReusableComponents(String fieldName) {
|
||||
Map<String, TokenStreamComponents> componentsPerField = (Map<String, TokenStreamComponents>) getStoredValue();
|
||||
return componentsPerField != null ? componentsPerField.get(fieldName) : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public void setReusableComponents(String fieldName, TokenStreamComponents components) {
|
||||
Map<String, TokenStreamComponents> componentsPerField = (Map<String, TokenStreamComponents>) getStoredValue();
|
||||
if (componentsPerField == null) {
|
||||
|
|
|
@ -61,25 +61,16 @@ public abstract class AnalyzerWrapper extends Analyzer {
|
|||
*/
|
||||
protected abstract TokenStreamComponents wrapComponents(String fieldName, TokenStreamComponents components);
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected final TokenStreamComponents createComponents(String fieldName, Reader aReader) {
|
||||
return wrapComponents(fieldName, getWrappedAnalyzer(fieldName).createComponents(fieldName, aReader));
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final int getPositionIncrementGap(String fieldName) {
|
||||
return getWrappedAnalyzer(fieldName).getPositionIncrementGap(fieldName);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public final int getOffsetGap(String fieldName) {
|
||||
return getWrappedAnalyzer(fieldName).getOffsetGap(fieldName);
|
||||
|
|
|
@ -213,7 +213,7 @@ public class Field implements IndexableField {
|
|||
}
|
||||
|
||||
/**
|
||||
* The TokesStream for this field to be used when indexing, or null. If null,
|
||||
* The TokenStream for this field to be used when indexing, or null. If null,
|
||||
* the Reader value or String value is analyzed to produce the indexed tokens.
|
||||
*/
|
||||
public TokenStream tokenStreamValue() {
|
||||
|
@ -405,9 +405,6 @@ public class Field implements IndexableField {
|
|||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
public TokenStream tokenStream(Analyzer analyzer) throws IOException {
|
||||
if (!fieldType().indexed()) {
|
||||
return null;
|
||||
|
|
|
@ -165,7 +165,6 @@ public final class SegmentInfo {
|
|||
return Collections.unmodifiableSet(setFiles);
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
public String toString() {
|
||||
return toString(dir, 0);
|
||||
|
|
|
@ -168,17 +168,11 @@ public class TestCrashCausesCorruptIndex extends LuceneTestCase {
|
|||
this.crashAfterCreateOutput = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void close() throws IOException {
|
||||
realDirectory.close();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public IndexOutput createOutput(String name, IOContext cxt) throws IOException {
|
||||
IndexOutput indexOutput = realDirectory.createOutput(name, cxt);
|
||||
|
@ -194,49 +188,31 @@ public class TestCrashCausesCorruptIndex extends LuceneTestCase {
|
|||
return indexOutput;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void deleteFile(String name) throws IOException {
|
||||
realDirectory.deleteFile(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public boolean fileExists(String name) throws IOException {
|
||||
return realDirectory.fileExists(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public long fileLength(String name) throws IOException {
|
||||
return realDirectory.fileLength(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public String[] listAll() throws IOException {
|
||||
return realDirectory.listAll();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public IndexInput openInput(String name, IOContext cxt) throws IOException {
|
||||
return realDirectory.openInput(name, cxt);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void sync(Collection<String> names) throws IOException {
|
||||
realDirectory.sync(names);
|
||||
|
|
|
@ -262,9 +262,7 @@ public abstract class DVGroupFacetCollector extends AbstractGroupFacetCollector
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected void nextTerm() throws IOException {
|
||||
mergeTerm = facetFieldSource.getByOrd(mergePos, spare);
|
||||
}
|
||||
|
|
|
@ -70,9 +70,7 @@ public class FunctionAllGroupHeadsCollector extends AbstractAllGroupHeadsCollect
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected void retrieveGroupHeadAndAddIfNotExist(int doc) throws IOException {
|
||||
filler.fillValue(doc);
|
||||
GroupHead groupHead = groups.get(mval);
|
||||
|
@ -87,13 +85,12 @@ public class FunctionAllGroupHeadsCollector extends AbstractAllGroupHeadsCollect
|
|||
this.temporalResult.groupHead = groupHead;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected Collection<GroupHead> getCollectedGroupHeads() {
|
||||
return groups.values();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setScorer(Scorer scorer) throws IOException {
|
||||
this.scorer = scorer;
|
||||
for (GroupHead groupHead : groups.values()) {
|
||||
|
@ -103,6 +100,7 @@ public class FunctionAllGroupHeadsCollector extends AbstractAllGroupHeadsCollect
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setNextReader(AtomicReaderContext context) throws IOException {
|
||||
this.readerContext = context;
|
||||
FunctionValues values = groupBy.getValues(vsContext, context);
|
||||
|
|
|
@ -61,13 +61,12 @@ public class FunctionAllGroupsCollector extends AbstractAllGroupsCollector<Mutab
|
|||
this.groupBy = groupBy;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public Collection<MutableValue> getGroups() {
|
||||
return groups;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void collect(int doc) throws IOException {
|
||||
filler.fillValue(doc);
|
||||
if (!groups.contains(mval)) {
|
||||
|
@ -75,9 +74,7 @@ public class FunctionAllGroupsCollector extends AbstractAllGroupsCollector<Mutab
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void setNextReader(AtomicReaderContext context) throws IOException {
|
||||
FunctionValues values = groupBy.getValues(vsContext, context);
|
||||
filler = values.getValueFiller();
|
||||
|
|
|
@ -64,17 +64,13 @@ public class FunctionSecondPassGroupingCollector extends AbstractSecondPassGroup
|
|||
this.vsContext = vsContext;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected SearchGroupDocs<MutableValue> retrieveGroup(int doc) throws IOException {
|
||||
filler.fillValue(doc);
|
||||
return groupMap.get(mval);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void setNextReader(AtomicReaderContext readerContext) throws IOException {
|
||||
super.setNextReader(readerContext);
|
||||
FunctionValues values = groupByVS.getValues(vsContext, readerContext);
|
||||
|
|
|
@ -82,6 +82,7 @@ public class TermAllGroupsCollector extends AbstractAllGroupsCollector<BytesRef>
|
|||
this(groupField, DEFAULT_INITIAL_SIZE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void collect(int doc) throws IOException {
|
||||
int key = index.getOrd(doc);
|
||||
if (!ordSet.exists(key)) {
|
||||
|
@ -91,13 +92,12 @@ public class TermAllGroupsCollector extends AbstractAllGroupsCollector<BytesRef>
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public Collection<BytesRef> getGroups() {
|
||||
return groups;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setNextReader(AtomicReaderContext context) throws IOException {
|
||||
index = FieldCache.DEFAULT.getTermsIndex(context.reader(), groupField);
|
||||
|
||||
|
|
|
@ -138,9 +138,6 @@ public class FSTCompletionLookup extends Lookup {
|
|||
completion.getFST(), true, exactMatchFirst);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
public void build(TermFreqIterator tfit) throws IOException {
|
||||
File tempInput = File.createTempFile(
|
||||
|
|
Loading…
Reference in New Issue