Skip to content

Commit 4af7aa7

Browse files
committed
refactor: remove unused var
1 parent 302eb32 commit 4af7aa7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

log-viewer/modules/parsers/ApexLogParser.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,7 @@ class ApexLogParser {
368368
for (let i = 0; i < len; i++) {
369369
const child = children[i];
370370
if (child) {
371-
const childType = child.type,
372-
isPkgType = childType === 'ENTERING_MANAGED_PKG';
373-
371+
const isPkgType = child.type === 'ENTERING_MANAGED_PKG';
374372
if (lastPkg && child instanceof TimedNode) {
375373
if (isPkgType && child.namespace === lastPkg.namespace) {
376374
// combine adjacent (like) packages

0 commit comments

Comments
 (0)