deanwampler / programming-scala-book-code-examples

The code examples used in Programming Scala, 2nd and 3rd Editions (O'Reilly)
Other
646 stars 410 forks source link

Fixed synchronize bugs (issue #104) #106

Closed deanwampler closed 7 months ago

deanwampler commented 7 months ago

Fixes #104. Apparently Scala as of 3.4 catches the error of trying to synchronize on a primitive. This PR replaces the four occurrences of count.synchronized {...} with this.synchronized {...}, synchronizing on the whole instance, which is almost the same since all the types involved only have a single int field named count in all cases.