Compares two values using Groovy's number-aware comparison. @param first the first value @param second the second value @return the comparison result
(Comparable first, Comparable second)
| 292 | * @return the comparison result |
| 293 | */ |
| 294 | protected int compareTo(Comparable first, Comparable second) { |
| 295 | return DefaultGroovyMethods.numberAwareCompareTo(first, second); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * protection against calls from Groovy |
no test coverage detected