Fix Checkstyle violation.

This commit is contained in:
Dennis Lundberg 2021-01-11 16:51:26 +01:00
parent 9166805a06
commit eb43b9be11
1 changed files with 2 additions and 1 deletions

View File

@ -822,7 +822,8 @@ public class ComparableVersion
+ ( ( compare == 0 ) ? "==" : ( ( compare < 0 ) ? "<" : ">" ) ) + ' ' + version ); + ( ( compare == 0 ) ? "==" : ( ( compare < 0 ) ? "<" : ">" ) ) + ' ' + version );
} }
System.out.println( ( i++ ) + ". " + version + " -> " + c.getCanonical() + "; tokens: " + c.items.toListString() ); System.out.println( ( i++ ) + ". " + version + " -> " + c.getCanonical()
+ "; tokens: " + c.items.toListString() );
prev = c; prev = c;
} }