Skip to content

Commit

Permalink
remove unnecessary newline in catchpointdump
Browse files Browse the repository at this point in the history
  • Loading branch information
cce committed Jan 7, 2025
1 parent 50994b0 commit 7f8cdd1
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cmd/catchpointdump/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,6 @@ func printKeyValue(writer *bufio.Writer, key, value []byte) {
}

func printKeyValueStore(databaseName string, stagingTables bool, outFile *os.File) error {
fmt.Printf("\n")
printDumpingCatchpointProgressLine(0, 50, 0)
lastProgressUpdate := time.Now()
progress := uint64(0)
Expand Down Expand Up @@ -583,8 +582,6 @@ func printKeyValueStore(databaseName string, stagingTables bool, outFile *os.Fil
}

func printOnlineAccounts(databaseName string, stagingTables bool, outFile *os.File) error {
fmt.Printf("\n")

fileWriter := bufio.NewWriterSize(outFile, 1024*1024)
defer fileWriter.Flush()

Expand Down Expand Up @@ -616,8 +613,6 @@ func printOnlineAccounts(databaseName string, stagingTables bool, outFile *os.Fi
}

func printOnlineRoundParams(databaseName string, stagingTables bool, outFile *os.File) error {
fmt.Printf("\n")

fileWriter := bufio.NewWriterSize(outFile, 1024*1024)
defer fileWriter.Flush()

Expand Down

0 comments on commit 7f8cdd1

Please sign in to comment.