mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-07-05 21:42:53 -05:00
Replace += 1 with ++
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user