Skip to content

Commit f9b6d18

Browse files
authored
Revert "Remove .dylib filtering. (#6796)" (#6797)
This reverts commit e4809d9.
1 parent 51fff8e commit f9b6d18

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1179,9 +1179,7 @@ function handleCrashFileRead(err: NodeJS.ErrnoException | undefined | null, data
11791179
const lines: string[] = data.split("\n");
11801180
data = "";
11811181
lines.forEach((line: string) => {
1182-
if (// Temporarily (?) remove .dylib filtering.
1183-
// !line.includes(".dylib") &&
1184-
!line.includes("???")) {
1182+
if (!line.includes(".dylib") && !line.includes("???")) {
11851183
line = line.replace(/^\d+\s+/, ""); // Remove <numbers><spaces> from the start of the line.
11861184
line = line.replace(/std::__1::/g, "std::"); // __1:: is not helpful.
11871185
data += (line + "\n");

0 commit comments

Comments
 (0)