Replace += 1 with ++

This commit is contained in:
Joël Stemmer
2022-08-11 00:49:39 +01:00
parent fbfb33add1
commit ddf6b16828
2 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ func newReportBuilder() *reportBuilder {
func (b *reportBuilder) newID() int {
id := b.nextID
b.lastID = id
b.nextID += 1
b.nextID++
return id
}