Remove debug logging

This commit is contained in:
embeddedt 2023-02-19 22:44:35 -05:00
parent 613364ce91
commit 5b852f9531
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -38,7 +38,6 @@ public class TagWrapperMixin<T> {
boolean regexCharFound = false;
for(int i = 0; i < inputStr.length(); i++) {
if(REGEX_SPECIAL_CHARS.contains(inputStr.charAt(i))) {
System.out.println(inputStr);
regexCharFound = true;
break;
}