Mark field in ReindexSameIndexTests as final

This commit restores a final modifier on the field
AutoCreateIndex#AUTO_CREATE_INDEX that was inadvertently removed in
a25b8ee1bf.
This commit is contained in:
Jason Tedor 2016-06-10 10:19:47 -04:00
parent 44c653f5a8
commit 6d8692576e
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class ReindexSameIndexTests extends ESTestCase {
private static ClusterState STATE;
private static final IndexNameExpressionResolver INDEX_NAME_EXPRESSION_RESOLVER = new IndexNameExpressionResolver(Settings.EMPTY);
private static AutoCreateIndex AUTO_CREATE_INDEX = new AutoCreateIndex(Settings.EMPTY, INDEX_NAME_EXPRESSION_RESOLVER);
private static final AutoCreateIndex AUTO_CREATE_INDEX = new AutoCreateIndex(Settings.EMPTY, INDEX_NAME_EXPRESSION_RESOLVER);
@BeforeClass
public static void beforeClass() {