summarylogtreecommitdiffstats
path: root/scilab-lucene.patch
diff options
context:
space:
mode:
authorCarlos Aznarán2024-03-15 12:46:08 -0500
committerCarlos Aznarán2024-03-15 12:46:08 -0500
commita8d942cb7bff7522d3e48684ac3fd3d0b0e3a269 (patch)
treeba9a7180377d9ffaf5cd32a45cf4f8292c32da20 /scilab-lucene.patch
parent249da2bad838c14a01c1db538f2487c7733bfbf0 (diff)
downloadaur-a8d942cb7bff7522d3e48684ac3fd3d0b0e3a269.tar.gz
Remove unncesary patches
Diffstat (limited to 'scilab-lucene.patch')
-rw-r--r--scilab-lucene.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/scilab-lucene.patch b/scilab-lucene.patch
deleted file mode 100644
index 25e610d3aad6..000000000000
--- a/scilab-lucene.patch
+++ /dev/null
@@ -1,27 +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
-@@ -57,7 +57,6 @@
-
- StandardQueryParser queryParserHelper = new StandardQueryParser();
- queryParserHelper.setAllowLeadingWildcard(true);
-- queryParserHelper.setLowercaseExpandedTerms(true);
- queryParserHelper.setAnalyzer(mgr.getAnalyzer());
- queryParserHelper.setMultiFields(new String[] {"refname", "refpurpose", "content"});
-
---- modules/xcos/src/java/org/scilab/modules/xcos/palette/PaletteIndexer.java 2018-01-04 15:55:54.019390755 +0100
-+++ modules/xcos/src/java/org/scilab/modules/xcos/palette/PaletteIndexer.java.new 2018-01-04 15:56:08.879485713 +0100
-@@ -162,7 +162,6 @@
-
- // add the block name
- Field refname = new TextField("refname", basename, Field.Store.YES);
-- refname.setBoost(100f);
- doc.add(refname);
-
- // add the refpurpose
-@@ -176,7 +175,6 @@
- refpurpose = new TextField("refpurpose", "", Field.Store.YES);
- }
-
-- refpurpose.setBoost(10f);
- doc.add(refpurpose);
- }