deliveredtechnologies / rulebook

100% Java, Lambda Enabled, Lightweight Rules Engine with a Simple and Intuitive DSL
http://www.deliveredtechnologies.com
Apache License 2.0
716 stars 124 forks source link

Update lock usage to reflect similar pattern as Result.java and Audit… #185

Closed azell closed 4 years ago

azell commented 4 years ago

…or.java:

lock.lock(); try { // business logic } finally { lock.unlock(); }