ScalABM / auctions

A functional API for auction simulations
Apache License 2.0
13 stars 1 forks source link

Added default case to AuctionActor receive method. #117

Closed davidrpugh closed 6 years ago

davidrpugh commented 6 years ago

This PR fixes a bug detected in the example application that I am developing. Basically, every receive block needs a catch all case which passes any message not otherwise dealt with to super.receive (eventually, super calls will fall to StackableActor trait where they are either handled or explicitly unhandled).