apache / accumulo-access

Apache Accumulo Access Control Library
https://accumulo.apache.org
Apache License 2.0
4 stars 11 forks source link

moves thread local access outside of loop #61

Closed keith-turner closed 9 months ago

keith-turner commented 9 months ago

A thread local was being accessed multiple times in a loop. The result should be the same each time, so the access was moved out of the loop to avoid any cost related to accessing a thread local.