remove CREATE from facet examples

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1456120 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2013-03-13 20:30:31 +00:00
parent 7b1b6b3399
commit 1f25393c40
3 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ public class AssociationsFacetsExample {
new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER))); new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER)));
// Writes facet ords to a separate directory from the main index // Writes facet ords to a separate directory from the main index
DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir, IndexWriterConfig.OpenMode.CREATE); DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir);
// Reused across documents, to add the necessary facet fields // Reused across documents, to add the necessary facet fields
FacetFields facetFields = new AssociationsFacetFields(taxoWriter); FacetFields facetFields = new AssociationsFacetFields(taxoWriter);

View File

@ -78,7 +78,7 @@ public class MultiCategoryListsFacetsExample {
new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER))); new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER)));
// Writes facet ords to a separate directory from the main index // Writes facet ords to a separate directory from the main index
DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir, IndexWriterConfig.OpenMode.CREATE); DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir);
// Reused across documents, to add the necessary facet fields // Reused across documents, to add the necessary facet fields
FacetFields facetFields = new FacetFields(taxoWriter, indexingParams); FacetFields facetFields = new FacetFields(taxoWriter, indexingParams);

View File

@ -67,7 +67,7 @@ public class SimpleFacetsExample {
new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER))); new WhitespaceAnalyzer(FacetExamples.EXAMPLES_VER)));
// Writes facet ords to a separate directory from the main index // Writes facet ords to a separate directory from the main index
DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir, IndexWriterConfig.OpenMode.CREATE); DirectoryTaxonomyWriter taxoWriter = new DirectoryTaxonomyWriter(taxoDir);
// Reused across documents, to add the necessary facet fields // Reused across documents, to add the necessary facet fields
FacetFields facetFields = new FacetFields(taxoWriter); FacetFields facetFields = new FacetFields(taxoWriter);