~ubuntu-branches/ubuntu/karmic/lucene2/karmic

« back to all changes in this revision

Viewing changes to src/java/org/apache/lucene/index/MergeScheduler.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2008-11-22 05:22:42 UTC
  • mfrom: (1.1.4 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20081122052242-iwzhyxjja1qlk2eq
Tags: 2.4.0+ds1-2ubuntu1
* Merge from debian unstable. (LP: #300540)
* Remaining Ubuntu changes:
  - debian/patches
    * 00list - Remove Debian's patch 81_prevent-network-access.dpatch. Not
      needed anymore.
  - debian/control
     * Modify Maintainer value to match the DebianMaintainerField
       specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
import java.io.IOException;
21
21
 
22
 
/** Expert: {@link IndexWriter} uses an instance
 
22
/** <p>Expert: {@link IndexWriter} uses an instance
23
23
 *  implementing this interface to execute the merges
24
24
 *  selected by a {@link MergePolicy}.  The default
25
 
 *  MergeScheduler is {@link ConcurrentMergeScheduler}.
 
25
 *  MergeScheduler is {@link ConcurrentMergeScheduler}.</p>
26
26
 * <p><b>NOTE:</b> This API is new and still experimental
27
27
 * (subject to change suddenly in the next release)</p>
28
28
*/