mirror of https://github.com/apache/lucene.git
eliminate useless javadoc tags breaking the build
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1159495 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f932976e99
commit
e7e46f60ce
|
@ -40,8 +40,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
/**
|
||||
* Creates a new Directory for a given path.
|
||||
*
|
||||
* @param path
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
protected abstract Directory create(String path) throws IOException;
|
||||
|
@ -49,8 +47,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
/**
|
||||
* Returns true if a Directory exists for a given path.
|
||||
*
|
||||
* @param path
|
||||
* @return
|
||||
*/
|
||||
public abstract boolean exists(String path);
|
||||
|
||||
|
@ -58,9 +54,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
* Returns the Directory for a given path, using the specified rawLockType.
|
||||
* Will return the same Directory instance for the same path.
|
||||
*
|
||||
* @param path
|
||||
* @param rawLockType
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
public abstract Directory get(String path, String rawLockType)
|
||||
|
@ -71,10 +64,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
* Will return the same Directory instance for the same path unless forceNew,
|
||||
* in which case a new Directory is returned.
|
||||
*
|
||||
* @param path
|
||||
* @param rawLockType
|
||||
* @param forceNew
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
public abstract Directory get(String path, String rawLockType,
|
||||
|
@ -84,7 +73,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
* Increment the number of references to the given Directory. You must call
|
||||
* release for every call to this method.
|
||||
*
|
||||
* @param directory
|
||||
*/
|
||||
public abstract void incRef(Directory directory);
|
||||
|
||||
|
@ -92,7 +80,6 @@ public abstract class DirectoryFactory implements NamedListInitializedPlugin,
|
|||
* Releases the Directory so that it may be closed when it is no longer
|
||||
* referenced.
|
||||
*
|
||||
* @param directory
|
||||
* @throws IOException
|
||||
*/
|
||||
public abstract void release(Directory directory) throws IOException;
|
||||
|
|
|
@ -495,10 +495,11 @@ public final class SolrCore implements SolrInfoMBean {
|
|||
/**
|
||||
* Creates a new core and register it in the list of cores.
|
||||
* If a core with the same name already exists, it will be stopped and replaced by this one.
|
||||
*
|
||||
* @param name
|
||||
* @param dataDir the index directory
|
||||
* @param config a solr config instance
|
||||
* @param schema a solr schema instance
|
||||
*@param updateHandler
|
||||
*
|
||||
* @since solr 1.3
|
||||
*/
|
||||
|
|
|
@ -396,7 +396,6 @@ public class SolrIndexSearcher extends IndexSearcher implements SolrInfoMBean {
|
|||
|
||||
/**
|
||||
* @return the indexDir on which this searcher is opened
|
||||
* @see #SolrIndexSearcher(SolrCore, IndexSchema, String, Directory, boolean)
|
||||
*/
|
||||
public String getIndexDir() {
|
||||
return indexDir;
|
||||
|
|
|
@ -43,8 +43,6 @@ public abstract class SolrCoreState {
|
|||
* Get the current IndexWriter. If a new IndexWriter must be created, use the
|
||||
* settings from the given {@link SolrCore}.
|
||||
*
|
||||
* @param core
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
public abstract IndexWriter getIndexWriter(SolrCore core) throws IOException;
|
||||
|
|
Loading…
Reference in New Issue