Skip to content

Commit

Permalink
Bug fix: Make -n usable with -vv
Browse files Browse the repository at this point in the history
- Fixed logic where -n was not usable with -vv
  • Loading branch information
JakeWnuk committed Apr 23, 2024
1 parent a9ea31d commit 858a615
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions pkg/format/format.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ func PrintArrayToSTDOUT(freq map[string]int, verbose bool) {
// None
func PrintStatsToSTDOUT(freq map[string]int, verbose bool, max int) {

// Set the max value
if !verbose {
max = 10
}

// Sort by frequency
p := make(models.PairList, len(freq))
normalizedP := make(models.PairList, len(freq))
Expand Down

0 comments on commit 858a615

Please sign in to comment.