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
Our property code currently performs an extra case-insensitive check and issue a warning if there's a case mismatch. I think we should remove this as we already warn for unknown properties.
The text was updated successfully, but these errors were encountered:
Updates the generated property code to include a boolean indicating if the property uses regular expressions for matching. It also removes the case sensitivity check on the property names in favor of a check on the prefix.
Now, if a property does not require regex we just do a plain string comparison.
Closes#2108 and #2106
…ng (zeroc-ice/ice#2122)
Updates the generated property code to include a boolean indicating if the property uses regular expressions for matching. It also removes the case sensitivity check on the property names in favor of a check on the prefix.
Now, if a property does not require regex we just do a plain string comparison.
Closeszeroc-ice/ice#2108 and zeroc-ice/ice#2106
Originally posted by @pepone in #2100 (comment)
Our property code currently performs an extra case-insensitive check and issue a warning if there's a case mismatch. I think we should remove this as we already warn for unknown properties.
The text was updated successfully, but these errors were encountered: