Skip to content

Commit

Permalink
Fix RecordValue.compareTo to call super.compareTo for different types,
Browse files Browse the repository at this point in the history
fixes #734
  • Loading branch information
nickbattle committed Aug 13, 2020
1 parent 134c0be commit a84093c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -367,7 +367,7 @@ else if (equals(other))
}
}

return Integer.MIN_VALUE; // Indicates incomparable values, but allows "sorting"
return super.compareTo(other); // Indicates incomparable values, but allows "sorting"
}

@Override
Expand Down

0 comments on commit a84093c

Please sign in to comment.