File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/analysis Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -319,24 +319,25 @@ public class AnalyzerGuru {
319319
320320 /**
321321 * Gets a version number to be used to tag documents examined by the guru so
322- * that analysis can be re-done later if a stored version number is
323- * different from the current implementation or if customization has been
324- * done by the user to change the {@link AnalyzerGuru} operation.
322+ * that {@link AbstractAnalyzer} selection can be re-done later if a stored
323+ * version number is different from the current implementation or if guru
324+ * factory registrations are modified by the user to change the guru
325+ * operation.
325326 * <p>
326327 * The static part of the version is bumped in a release when e.g. new
327328 * {@link FileAnalyzerFactory} subclasses are registered or when existing
328329 * {@link FileAnalyzerFactory} subclasses are revised to target more or
329330 * different files.
330331 * @return a value whose lower 32-bits are a static value
331- * 20171230_00
332+ * 20190211_00
332333 * for the current implementation and whose higher-32 bits are non-zero if
333334 * {@link #addExtension(java.lang.String, AnalyzerFactory)}
334335 * or
335336 * {@link #addPrefix(java.lang.String, AnalyzerFactory)}
336337 * has been called.
337338 */
338339 public static long getVersionNo () {
339- final int ver32 = 20171230_00 ; // Edit comment above too!
340+ final int ver32 = 20190211_00 ; // Edit comment above too!
340341 long ver = ver32 ;
341342 if (customizationHashCode != 0 ) {
342343 ver |= (long )customizationHashCode << 32 ;
You can’t perform that action at this time.
0 commit comments