[java] fix comparator of Docker versions - #17723
Conversation
Generally, people consider "numeric component > alphabetic component". For example, 1.2.alpha < 1.2.beta < 1.2.3.alpha < 1.2.3 Before this change, Version.java was thinking that: * 1.2.3.4 > 1.2.4 * 1.2.beta > 1.2.3.alpha * 1.2.3.alpha > 1.2.3
PR Summary by QodoFix Docker Version comparator for numeric vs alphabetic segments Description
Diagram
High-Level Assessment
Files changed (2)
|
Code Review by Qodo
Context used✅ Compliance rules (platform):
18 rules 1.
|
|
Code review by qodo was updated up to the latest commit b96bcab |
Generally, people consider "numeric component > alphabetic component".
For example,
1.2.alpha < 1.2.beta < 1.2.3.alpha < 1.2.3
💥 What does this PR do?
fixes
Version.javaBefore this change, Version.java was thinking that:
🤖 AI assistance
🔄 Types of changes