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
The deserializeObject() methods should be refactored to use a switch statement instead of a series of if statement with a hashtable lookup in the middle.
The switch could operate on the class ID or on an ENUM that represents the class ID.
This code is performance critical, so performance should be measured to ensure improvements.
The text was updated successfully, but these errors were encountered:
The
deserializeObject()
methods should be refactored to use a switch statement instead of a series ofif
statement with a hashtable lookup in the middle.The switch could operate on the class ID or on an ENUM that represents the class ID.
This code is performance critical, so performance should be measured to ensure improvements.
The text was updated successfully, but these errors were encountered: