Skip to content

Commit

Permalink
fix: deleted unnecessary lines
Browse files Browse the repository at this point in the history
  • Loading branch information
KadirOzerOzturk committed Nov 8, 2024
1 parent eb330b3 commit 71aac81
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,7 @@ func parseMIB(lines []string) ([]OIDNode, error) {
}
descriptionLine += " " + strings.TrimSpace(lines[k])
}
description := strings.TrimSpace(strings.ReplaceAll(descriptionLine, "DESCRIPTION", ""))
fmt.Println("desc line:", descriptionLine)
fmt.Println("desc:", description)
description = strings.TrimSpace(strings.ReplaceAll(descriptionLine, "DESCRIPTION", ""))

}
}
Expand Down

0 comments on commit 71aac81

Please sign in to comment.