Skip to content

Commit

Permalink
add comment to force release
Browse files Browse the repository at this point in the history
  • Loading branch information
jclausen committed Jan 20, 2025
1 parent 4558172 commit 06cb840
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ public static Stream<IStruct> findKey( IStruct struct, String key ) {
String stringKey = entry.getKey().getName().toLowerCase();
return splitParts.length > 1
? splitParts[ splitParts.length - 1 ].equals( key.toLowerCase() ) || stringKey.equals( key.toLowerCase() )
// For single keys make sure we check that it wasn't added above
: results.stream().filter( result -> result.get( Key.value ).equals( entry.getValue() ) ).count() == 0
&& stringKey.equals( key.toLowerCase() );
} )
Expand Down

0 comments on commit 06cb840

Please sign in to comment.