summarylogtreecommitdiffstats
path: root/scilab-lucene-6.patch
diff options
context:
space:
mode:
authoreolianoe2018-01-04 17:14:05 +0100
committereolianoe2018-01-04 17:14:05 +0100
commit16e0134dac5001906128e019a131ba64042044ee (patch)
treeef90a2ed3d6627abfc69d1514ad119f2a32d4c6e /scilab-lucene-6.patch
parent05cc067bb05e1a65263d83432e71e15c790d6300 (diff)
downloadaur-16e0134dac5001906128e019a131ba64042044ee.tar.gz
fix for apache lucene>=7
Diffstat (limited to 'scilab-lucene-6.patch')
-rw-r--r--scilab-lucene-6.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/scilab-lucene-6.patch b/scilab-lucene-6.patch
deleted file mode 100644
index 7054a6876c91..000000000000
--- a/scilab-lucene-6.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/xcos/src/java/org/scilab/modules/xcos/palette/PaletteSearcher.java 2017-02-15 19:48:09.065311738 +0100
-+++ modules/xcos/src/java/org/scilab/modules/xcos/palette/PaletteSearcher.java.new 2017-02-15 19:43:03.057878902 +0100
-@@ -52,7 +52,7 @@
- */
- public List<Document> search(String str) {
- List<Document> found = new ArrayList<>();
-- try (IndexReader reader = DirectoryReader.open(mgr.getIndexWriter(), true)) {
-+ try (IndexReader reader = DirectoryReader.open(mgr.getIndexWriter(), true, true)) {
- IndexSearcher searcher = new IndexSearcher(reader);
-
- StandardQueryParser queryParserHelper = new StandardQueryParser();