File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/Nest/Analysis/Analyzers Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ public class CustomAnalyzerDescriptor
8484
8585 IEnumerable < string > ICustomAnalyzer . CharFilter { get ; set ; }
8686 IEnumerable < string > ICustomAnalyzer . Filter { get ; set ; }
87- [ Obsolete ( "Deprecated, use PositionIncrementGap instead" ) ]
8887 int ? ICustomAnalyzer . PositionOffsetGap { get ; set ; }
8988 int ? ICustomAnalyzer . PositionIncrementGap { get ; set ; }
9089 string ICustomAnalyzer . Tokenizer { get ; set ; }
@@ -110,7 +109,7 @@ public CustomAnalyzerDescriptor PositionOffsetGap(int? positionOffsetGap) =>
110109 Assign ( positionOffsetGap , ( a , v ) => a . PositionOffsetGap = v ) ;
111110
112111 /// <inheritdoc />
113- public CustomAnalyzerDescriptor PositionIncrementGap ( int ? positionOffsetGap ) =>
114- Assign ( positionOffsetGap , ( a , v ) => a . PositionIncrementGap = v ) ;
112+ public CustomAnalyzerDescriptor PositionIncrementGap ( int ? positionIncrementGap ) =>
113+ Assign ( positionIncrementGap , ( a , v ) => a . PositionIncrementGap = v ) ;
115114 }
116115}
You can’t perform that action at this time.
0 commit comments