Skip to content

Commit 670ee78

Browse files
idodeclareVladimir Kotal
authored andcommitted
Bump AnalyzerGuru version after Verilog addition
1 parent 974501a commit 670ee78

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/analysis/AnalyzerGuru.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)