From ca167d28c43c7f23bbd11e66cfe673cea90cdb5f Mon Sep 17 00:00:00 2001 From: Craig Perkins Date: Thu, 1 Jun 2023 16:55:54 -0400 Subject: [PATCH] Reorder Setting enum to add Extension scope at bottom (#7870) Signed-off-by: Craig Perkins --- .../java/org/opensearch/common/settings/Setting.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/src/main/java/org/opensearch/common/settings/Setting.java b/server/src/main/java/org/opensearch/common/settings/Setting.java index 32a6686398a2a..13ab6b739371c 100644 --- a/server/src/main/java/org/opensearch/common/settings/Setting.java +++ b/server/src/main/java/org/opensearch/common/settings/Setting.java @@ -132,11 +132,6 @@ public enum Property { */ Deprecated, - /** - * Extension scope - */ - ExtensionScope, - /** * Node scope */ @@ -167,7 +162,12 @@ public enum Property { /** * Indicates an index-level setting that is privately managed. Such a setting can not even be set on index creation. */ - PrivateIndex + PrivateIndex, + + /** + * Extension scope + */ + ExtensionScope } private final Key key;