In production we turn off immutability for performance and I'm wondering if calls to cursor.deepClone() should/could be a no-op? The original intent behind deepClone was to get the object back in a mutable form which is why I'm thinking it could make sense to skip the cloning if it is already mutable.
In production we turn off immutability for performance and I'm wondering if calls to
cursor.deepClone()
should/could be a no-op? The original intent behinddeepClone
was to get the object back in a mutable form which is why I'm thinking it could make sense to skip the cloning if it is already mutable.