You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to understand the reason for choosing to have the switch statement and not going with s.toLowerCase() on the string itself. Is the reason for doing this tedious task performance for the common case (of only A-Z) strings?
The text was updated successfully, but these errors were encountered:
I was going through the code in
scim/scim-sdk/src/main/java/com/unboundid/scim/sdk/StaticUtils.java
Line 58 in bf0f52f
I would like to understand the reason for choosing to have the switch statement and not going with
s.toLowerCase()
on the string itself. Is the reason for doing this tedious task performance for the common case (of onlyA-Z
) strings?The text was updated successfully, but these errors were encountered: