clean few javadoc warnings that showed up as javadocs are built for a few more contrib paths. (LUCENE-875 related).

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@536668 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doron Cohen 2007-05-09 21:49:01 +00:00
parent d761e15138
commit a0437dab03
5 changed files with 4 additions and 7 deletions

View File

@ -99,7 +99,7 @@ public class JEDirectory extends Directory {
* to commit the transaction without closing this DbDirectory instance * to commit the transaction without closing this DbDirectory instance
* first. * first.
* *
* @see setTransaction * @see #setTransaction
*/ */
public void flush() throws IOException { public void flush() throws IOException {
Iterator iterator = openFiles.iterator(); Iterator iterator = openFiles.iterator();

View File

@ -108,7 +108,7 @@ public class DbDirectory extends Directory {
* Flush the currently open files. After they have been flushed it is * Flush the currently open files. After they have been flushed it is
* safe to commit the transaction without closing this DbDirectory * safe to commit the transaction without closing this DbDirectory
* instance first. * instance first.
* @see setTransaction * @see #setTransaction
*/ */
public void flush() public void flush()
throws IOException throws IOException

View File

@ -34,7 +34,6 @@ public class MoreLikeThisQuery extends Query
/** /**
* @param docId
* @param moreLikeFields * @param moreLikeFields
*/ */
public MoreLikeThisQuery(String likeText, String[] moreLikeFields, Analyzer analyzer) public MoreLikeThisQuery(String likeText, String[] moreLikeFields, Analyzer analyzer)

View File

@ -237,8 +237,8 @@ public class DOMUtils
} }
/** /**
* Helper method to parse an XML file into a DOM tree, given a filename. * Helper method to parse an XML file into a DOM tree, given a reader.
* @param pXmlFile name of the XML file to be parsed * @param is reader of the XML file to be parsed
* @return an org.w3c.dom.Document object * @return an org.w3c.dom.Document object
*/ */
public static Document loadXML(Reader is) public static Document loadXML(Reader is)

View File

@ -32,8 +32,6 @@ import org.w3c.dom.Element;
*/ */
/** /**
* @author maharwood * @author maharwood
*
* @
*/ */
public class TermsFilterBuilder implements FilterBuilder public class TermsFilterBuilder implements FilterBuilder
{ {