thombergs / buckpal

An example approach for implementing a Clean/Hexagonal Architecture
https://leanpub.com/get-your-hands-dirty-on-clean-architecture/overview
2.14k stars 659 forks source link

Fix: remove public access modifier #46

Open KimDoubleB opened 3 months ago

KimDoubleB commented 3 months ago

Access modifier of port implementation classes is set to package-private (java default access modifier) to avoid dependencies on the other port implementation classes in your project.

However, in the case of the SendMoneyService class, public access modifier is being used in the project. So, I removed it.