Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
riverwanderer committed Oct 3, 2023
1 parent b6bc8e6 commit 40c8f9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2677,7 +2677,7 @@ else if (c instanceof PrototypeDefinition) {
* @return true if this is a match based on our "matchCase" & "matchRegex"checkboxes.
*/
private boolean checkString(String target, String searchString, Pattern regexP) {
if (regexPattern == null) {
if (regexP == null) {
if (searchParameters.isMatchCase()) {
return target.contains(searchString);
}
Expand Down

0 comments on commit 40c8f9f

Please sign in to comment.