mirror of
https://github.com/apache/lucene.git
synced 2025-02-22 18:27:21 +00:00
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:
parent
7b9fa18073
commit
d8b619181a
@ -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());
|
||||
|
@ -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 {
|
||||
|
@ -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) {
|
||||
|
@ -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()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user