Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-04-15 12:43:12 +0000
committerAlexander Kurtakov2019-04-15 12:56:42 +0000
commit3b54b01cc1256453b432e655f6554d2733e986e2 (patch)
tree9f0441524754540e42e8e9d3d24bc642382543cf /org.eclipse.help.base
parentd4fc6564f0361d8d51e42fbbd5d27c926a4320cd (diff)
downloadeclipse.platform.ua-3b54b01cc1256453b432e655f6554d2733e986e2.tar.gz
eclipse.platform.ua-3b54b01cc1256453b432e655f6554d2733e986e2.tar.xz
eclipse.platform.ua-3b54b01cc1256453b432e655f6554d2733e986e2.zip
Bug 545395 - Update platform.ua to Lucene 8.0
Fix message when using old lucene index format to actually require that index is built with lucene 8. Change-Id: Ic3f5a7ca7eecd5927df635418e634f56a7b65bdc Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/search/PluginIndex.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/search/PluginIndex.java b/org.eclipse.help.base/src/org/eclipse/help/internal/search/PluginIndex.java
index 8b737f336..d25f19280 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/search/PluginIndex.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/search/PluginIndex.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2016 IBM Corporation and others.
+ * Copyright (c) 2005, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -155,7 +155,7 @@ public class PluginIndex {
.getProperty(SearchIndex.DEPENDENCIES_KEY_ANALYZER);
if (!targetIndex.isLuceneCompatible(lucene) || !targetIndex.isAnalyzerCompatible(analyzer)) {
String message = "Unable to consume Lucene index from bundle '" + bundle.toString() //$NON-NLS-1$
- + "'. The index should be rebuilt with Lucene 7.0.0"; //$NON-NLS-1$
+ + "'. The index should be rebuilt with Lucene 8.0.0"; //$NON-NLS-1$
Status warningStatus = new Status(IStatus.WARNING, HelpBasePlugin.PLUGIN_ID, IStatus.OK, message, null);
HelpBasePlugin.logStatus(warningStatus);
return false;

Back to the top