LUCENE-9429 add missing semicolon (#1673)

This commit is contained in:
Zeno Gantner 2020-07-24 23:21:27 +02:00 committed by GitHub
parent 4b2e90b3aa
commit d0642600ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,7 @@ to check if the results are what we expect):</p>
Analyzer analyzer = new StandardAnalyzer();
Path indexPath = Files.createTempDirectory("tempIndex");
Directory directory = FSDirectory.open(indexPath)
Directory directory = FSDirectory.open(indexPath);
IndexWriterConfig config = new IndexWriterConfig(analyzer);
IndexWriter iwriter = new IndexWriter(directory, config);
Document doc = new Document();