Skip to content

Commit a19b834

Browse files
Gabriel MoskoviczGabriel Moskovicz
Gabriel Moskovicz
authored and
Gabriel Moskovicz
committed
Fixed indentation
1 parent 436db6f commit a19b834

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Diff for: src/Nest/Domain/Analysis/Analyzers/CustomAnalyzer.cs

+12-12
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ namespace Nest
1010
/// <para>The custom analyzer accepts a logical/registered name of the tokenizer to use, and a list of logical/registered names of token filters.</para>
1111
/// </summary>
1212
public class CustomAnalyzer : AnalyzerBase
13-
{
14-
public CustomAnalyzer(string type)
15-
{
16-
Type = type;
17-
}
13+
{
14+
public CustomAnalyzer(string type)
15+
{
16+
Type = type;
17+
}
1818

19-
public CustomAnalyzer() : this("custom") {}
19+
public CustomAnalyzer() : this("custom") { }
2020

21-
[JsonProperty("tokenizer")]
22-
public string Tokenizer { get; set; }
21+
[JsonProperty("tokenizer")]
22+
public string Tokenizer { get; set; }
2323

2424
[JsonProperty("filter")]
25-
public IList<string> Filter { get; set; }
25+
public IList<string> Filter { get; set; }
2626

27-
[JsonProperty("char_filter")]
28-
public IList<string> CharFilter { get; set; }
27+
[JsonProperty("char_filter")]
28+
public IList<string> CharFilter { get; set; }
2929

3030
[JsonProperty("alias")]
3131
public IList<string> Alias { get; set; }
32-
}
32+
}
3333
}

0 commit comments

Comments
 (0)