Skip to content

Commit fd90659

Browse files
committed
Subsume delegate RubyLexHelper after 80ef15e
1 parent 23055ca commit fd90659

File tree

6 files changed

+409
-294
lines changed

6 files changed

+409
-294
lines changed

dev/checkstyle/suppressions.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ information: Portions Copyright [yyyy] [name of copyright owner]
1919
CDDL HEADER END
2020
2121
Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
22-
Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
22+
Portions Copyright (c) 2018-2019, Chris Fraire <[email protected]>.
2323
2424
-->
25+
2526
<!DOCTYPE suppressions PUBLIC
2627
"-//Checkstyle//DTD SuppressionFilter Configuration 1.1//EN"
2728
"https://checkstyle.org/dtds/suppressions_1_1.dtd">
@@ -35,7 +36,7 @@ Portions Copyright (c) 2018, Chris Fraire <[email protected]>.
3536
|LazilyInstantiate\.java" />
3637

3738
<suppress checks="ParameterNumber" files="CtagsReader\.java|Definitions\.java|PerlLexHelper\.java|
38-
|JFlexXrefUtils\.java|RubyLexHelper\.java|FileAnalyzerFactory\.java|SearchController\.java|
39+
|JFlexXrefUtils\.java|FileAnalyzerFactory\.java|SearchController\.java|
3940
|Context\.java|HistoryContext\.java|Suggester\.java" />
4041

4142
<suppress checks="MethodLength" files="Indexer\.java" />

opengrok-indexer/src/main/java/org/opengrok/indexer/analysis/ruby/RubyAnalyzer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/*
2121
* Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
22-
* Portions Copyright (c) 2017-2018, Chris Fraire <[email protected]>.
22+
* Portions Copyright (c) 2017-2019, Chris Fraire <[email protected]>.
2323
*/
2424

2525
package org.opengrok.indexer.analysis.ruby;
@@ -50,11 +50,11 @@ protected RubyAnalyzer(AnalyzerFactory factory) {
5050
* Gets a version number to be used to tag processed documents so that
5151
* re-analysis can be re-done later if a stored version number is different
5252
* from the current implementation.
53-
* @return 20180208_00
53+
* @return 20190118_00
5454
*/
5555
@Override
5656
protected int getSpecializedVersionNo() {
57-
return 20180208_00; // Edit comment above too!
57+
return 20190118_00; // Edit comment above too!
5858
}
5959

6060
/**

0 commit comments

Comments
 (0)