Clear the bits. @param holder the int data containing the bits we're interested in @return the value of holder with the specified bits cleared (set to 0)
(final int holder)
| 196 | */ |
| 197 | |
| 198 | public int clear(final int holder) |
| 199 | { |
| 200 | return holder & ~_mask; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Clear the bits. |
no outgoing calls
no test coverage detected