Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianMichael committed Feb 16, 2024
2 parents 85d915a + cfb2ca5 commit 988268b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public class ProtocolTranslator {
protected Comparator<ProtocolVersion> customComparator() {
return (o1, o2) -> {
if (o1 == AUTO_DETECT_PROTOCOL) {
return -1;
} else if (o2 == AUTO_DETECT_PROTOCOL) {
return 1;
} else if (o2 == AUTO_DETECT_PROTOCOL) {
return -1;
} else {
return 0;
}
Expand Down

0 comments on commit 988268b

Please sign in to comment.