We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 302eb32 commit 4af7aa7Copy full SHA for 4af7aa7
1 file changed
log-viewer/modules/parsers/ApexLogParser.ts
@@ -368,9 +368,7 @@ class ApexLogParser {
368
for (let i = 0; i < len; i++) {
369
const child = children[i];
370
if (child) {
371
- const childType = child.type,
372
- isPkgType = childType === 'ENTERING_MANAGED_PKG';
373
-
+ const isPkgType = child.type === 'ENTERING_MANAGED_PKG';
374
if (lastPkg && child instanceof TimedNode) {
375
if (isPkgType && child.namespace === lastPkg.namespace) {
376
// combine adjacent (like) packages
0 commit comments