mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-23 13:26:02 +00:00
Fix line-length violation in DiscoveryNodeRole
This commit fixes a line-length checkstyle violation in DiscoveryNodeRole.java.
This commit is contained in:
parent
03cab96b2d
commit
60437b474d
@ -154,8 +154,8 @@ public abstract class DiscoveryNodeRole implements Comparable<DiscoveryNodeRole>
|
||||
/**
|
||||
* The built-in node roles.
|
||||
*/
|
||||
public static SortedSet<DiscoveryNodeRole> BUILT_IN_ROLES =
|
||||
Collections.unmodifiableSortedSet(new TreeSet<>(Arrays.asList(DATA_ROLE, INGEST_ROLE, MASTER_ROLE, REMOTE_CLUSTER_CLIENT_ROLE)));
|
||||
public static SortedSet<DiscoveryNodeRole> BUILT_IN_ROLES = Collections.unmodifiableSortedSet(
|
||||
new TreeSet<>(Arrays.asList(DATA_ROLE, INGEST_ROLE, MASTER_ROLE, REMOTE_CLUSTER_CLIENT_ROLE)));
|
||||
|
||||
static SortedSet<DiscoveryNodeRole> LEGACY_ROLES =
|
||||
Collections.unmodifiableSortedSet(new TreeSet<>(Arrays.asList(DATA_ROLE, INGEST_ROLE, MASTER_ROLE)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user