Skip to content

Commit

Permalink
Revert "Remove .dylib filtering. (#6796)" (#6797)
Browse files Browse the repository at this point in the history
This reverts commit e4809d9.
  • Loading branch information
sean-mcmanus authored Jan 16, 2021
1 parent 51fff8e commit f9b6d18
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Extension/src/LanguageServer/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1179,9 +1179,7 @@ function handleCrashFileRead(err: NodeJS.ErrnoException | undefined | null, data
const lines: string[] = data.split("\n");
data = "";
lines.forEach((line: string) => {
if (// Temporarily (?) remove .dylib filtering.
// !line.includes(".dylib") &&
!line.includes("???")) {
if (!line.includes(".dylib") && !line.includes("???")) {
line = line.replace(/^\d+\s+/, ""); // Remove <numbers><spaces> from the start of the line.
line = line.replace(/std::__1::/g, "std::"); // __1:: is not helpful.
data += (line + "\n");
Expand Down

0 comments on commit f9b6d18

Please sign in to comment.