Merge remote-tracking branch 'origin/patch'

Conflicts:
	Ghidra/Features/Base/src/main/java/ghidra/app/util/bin/format/pe/FileHeader.java
	Ghidra/Framework/Utility/src/main/java/ghidra/util/UserSearchUtils.java
This commit is contained in:
Ryan Kurtz 2022-07-15 09:58:09 -04:00
commit 7ccca377a7
2 changed files with 11 additions and 11 deletions

View file

@ -40,8 +40,7 @@ public class UserSearchUtils {
private final static char[] GLOB_CHARACTERS = { '*', '?' };
/**
* A pattern that will find all '\' chars that are not followed by '*', '?'
* or another '\'
* A pattern that will find all '\' chars that are not followed by '*', '?' or another '\'
*/
public final static Pattern NON_GLOB_BACKSLASH_PATTERN = Pattern.compile("\\\\(?![\\*\\?])");
@ -382,12 +381,12 @@ public class UserSearchUtils {
* array.
*
* @param input The input string to be escaped
* @param doNotEscape characters that should not be escaped
* @param doNotEscape an array of characters that should not be escaped
* @return A new regex string with special characters escaped.
*/
// note: 'package' for testing
static String escapeSomeRegexCharacters(String input, char[] doNotEscape) {
StringBuffer buffy = new StringBuffer();
StringBuilder buffy = new StringBuilder();
for (int i = 0; i < input.length(); i++) {
char c = input.charAt(i);