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 {
319
319
320
320
/**
321
321
* 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.
325
326
* <p>
326
327
* The static part of the version is bumped in a release when e.g. new
327
328
* {@link FileAnalyzerFactory} subclasses are registered or when existing
328
329
* {@link FileAnalyzerFactory} subclasses are revised to target more or
329
330
* different files.
330
331
* @return a value whose lower 32-bits are a static value
331
- * 20171230_00
332
+ * 20190211_00
332
333
* for the current implementation and whose higher-32 bits are non-zero if
333
334
* {@link #addExtension(java.lang.String, AnalyzerFactory)}
334
335
* or
335
336
* {@link #addPrefix(java.lang.String, AnalyzerFactory)}
336
337
* has been called.
337
338
*/
338
339
public static long getVersionNo () {
339
- final int ver32 = 20171230_00 ; // Edit comment above too!
340
+ final int ver32 = 20190211_00 ; // Edit comment above too!
340
341
long ver = ver32 ;
341
342
if (customizationHashCode != 0 ) {
342
343
ver |= (long )customizationHashCode << 32 ;
You can’t perform that action at this time.
0 commit comments