Skip to content

Commit

Permalink
[FIXED JENKINS-38812] Commented on the implementation. Uses the same …
Browse files Browse the repository at this point in the history
…setting as used globally
  • Loading branch information
David Rutqvist committed Oct 11, 2016
1 parent 6b933bd commit 9fee6cc
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -119,7 +119,11 @@ class Visitor extends ItemVisitor {
@Override
public void onItem(Item i) {
String n = contextualNameOf(i);
boolean caseInsensitive = UserSearchProperty.isCaseInsensitive();

//Check user's setting on whether to do case sensitive comparison, configured in user -> configure
//This is the same setting that is used by the global search field, should be consistent throughout
//the whole application.
boolean caseInsensitive = UserSearchProperty.isCaseInsensitive();

String hay = n;
String needle = value;
Expand Down

0 comments on commit 9fee6cc

Please sign in to comment.