mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-24 12:15:50 +08:00
Removed DWARF COLON_MANGLE
This commit is contained in:
+1
-4
@@ -59,12 +59,9 @@ public class NamespacePath implements Comparable<NamespacePath> {
|
||||
}
|
||||
|
||||
private static final String FWDSLASH_MANGLE = "-fwdslash-";
|
||||
private static final String COLON_MANGLE = "-";
|
||||
|
||||
private static String preMangleName(String name) {
|
||||
return name == null ? null
|
||||
: name.replaceAll(":", COLON_MANGLE).replaceAll(" ", "").replaceAll("/",
|
||||
FWDSLASH_MANGLE);
|
||||
return name == null ? null : name.replaceAll(" ", "").replaceAll("/", FWDSLASH_MANGLE);
|
||||
}
|
||||
|
||||
private final NamespacePath parent;
|
||||
|
||||
Reference in New Issue
Block a user