Skip to content

Commit

Permalink
Make ConfigValue comparator public
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Sep 20, 2024
1 parent 646d233 commit b26ba8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public ConfigValue build() {
}
}

static final Comparator<ConfigValue> CONFIG_SOURCE_COMPARATOR = new Comparator<ConfigValue>() {
public static final Comparator<ConfigValue> CONFIG_SOURCE_COMPARATOR = new Comparator<ConfigValue>() {
@Override
public int compare(ConfigValue original, ConfigValue candidate) {
int result = Integer.compare(original.configSourceOrdinal, candidate.configSourceOrdinal);
Expand Down

0 comments on commit b26ba8b

Please sign in to comment.