Skip to content

Commit

Permalink
HSEARCH-2457 Fixed a case sensitivity issue introduced in 3b2927a
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and gsmet committed Nov 23, 2016
1 parent 415a2c3 commit dd66326
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -963,7 +963,7 @@ private void bindSortableFieldAnnotation(SortableField sortableFieldAnnotation,

// Make sure a sort on the id field is only added to the idPropertyMetadata
if ( isIdProperty && !sortedFieldAbsoluteName.equals( idFieldPath )
|| !isIdProperty && sortedFieldAbsoluteName.equalsIgnoreCase( idFieldPath ) ) {
|| !isIdProperty && sortedFieldAbsoluteName.equals( idFieldPath ) ) {
return;
}

Expand Down

0 comments on commit dd66326

Please sign in to comment.