Remove useless javadocs that trigger warnings and build failures for some people

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1382976 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2012-09-10 16:37:44 +00:00
parent 7b9fa18073
commit d8b619181a
4 changed files with 0 additions and 21 deletions

View File

@ -161,9 +161,6 @@ public class LeaderElector {
/**
* Returns int given String of form n_0000000001 or n_0000000003, etc.
*
* @param nStringSequence
* @return
*/
private int getSeq(String nStringSequence) {
int seq = 0;
@ -191,9 +188,6 @@ public class LeaderElector {
/**
* Returns int list given list of form n_0000000001, n_0000000003, etc.
*
* @param seqs
* @return
*/
private List<Integer> getSeqs(List<String> seqs) {
List<Integer> intSeqs = new ArrayList<Integer>(seqs.size());

View File

@ -657,12 +657,6 @@ public final class ZkController {
/**
* Get leader props directly from zk nodes.
*
* @param collection
* @param slice
* @return
* @throws KeeperException
* @throws InterruptedException
*/
private ZkCoreNodeProps getLeaderProps(final String collection,
final String slice) throws InterruptedException {

View File

@ -245,13 +245,6 @@ public abstract class CachingDirectoryFactory extends DirectoryFactory {
close(directory);
}
/**
* @param dir
* @param lockPath
* @param rawLockType
* @return
* @throws IOException
*/
private static Directory injectLockFactory(Directory dir, String lockPath,
String rawLockType) throws IOException {
if (null == rawLockType) {

View File

@ -177,8 +177,6 @@ public class PossibilityIterator implements
* Rank here is the sum of each selected term's position in its respective
* LinkedHashMap.
* </p>
*
* @return
*/
private RankedSpellPossibility internalNext() {
if (nextOnes != null && nextOnes.hasNext()) {